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

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