summaryrefslogblamecommitdiff
path: root/test/files/run/reify_newimpl_06.scala
blob: 0bf37da8c6f3deaf1ed9253f18cd2ae00a9a9fd2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                                       









                             
import scala.reflect.runtime.universe._
import scala.tools.reflect.ToolBox
import scala.tools.reflect.Eval

object Test extends App {
  class C(val y: Int) {
    val code = reify {
      reify{y}.eval
    }
  }

  println(new C(2).code.eval)
}