summaryrefslogtreecommitdiff
path: root/test/files/run/reify_newimpl_31.scala
blob: 20a851e32ea235b5b4e55e6012875382877efd1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.reflect.mirror._

object Test extends App {
  object C {
    type T = Int
    val code = reify {
      List[C.T](2)
    }
    println(code.eval)
  }

  C
}