aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_15.scala
blob: 504cdf7c70348b5780d232f8f831743e5d6b146e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import scala.reflect.runtime.universe._
import scala.tools.reflect.ToolBox
import scala.tools.reflect.Eval

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

  new C
}