summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure3b.scala
blob: 0d806b148b5b3809e1402357b6d23f18a35a13a6 (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.runExpr(new Foo(y).fun.tree)
    dyn.asInstanceOf[Int => Int]
  }

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