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

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

  new C
}