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

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

    new C
  }
}