summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure3b.scala
blob: 54ac52ba0b97af9bc4e3f285c60689791d6aaaf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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): Int => Int = {
    class Foo(y: Int) {
      def y1 = y

      val fun = reify{(x: Int) => {
        x + y1
      }}
    }

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

  println(foo(1)(10))
  println(foo(2)(10))
}