summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure9a.scala
blob: f39ff1e2f31291e93868a5d955b580a9f6bee827 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{universe => ru}
import scala.reflect.runtime.{currentMirror => cm}
import scala.tools.reflect.ToolBox

object Test extends App {
  def foo(y: Int) = {
    class Foo(val y: Int) {
      def fun = reify{y}
    }

    val toolbox = cm.mkToolBox()
    val dyn = toolbox.eval(new Foo(y).fun.tree)
    dyn.asInstanceOf[Int]
  }

  println(foo(10))
}