summaryrefslogtreecommitdiff
path: root/test/files/run/reify_newimpl_32.scala
blob: 788486ec00693233df03bf21170a6ce13e4fd376 (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 {
  {
    object C {
      type T = Int
      val code = reify {
        List[C.T](2)
      }
      println(code.eval)
    }

    C
  }
}