summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure2b.scala
blob: 0f126c8c91d52b198ff9059ab82f45c8faefad41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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) {
      val fun = reify{(x: Int) => {
        x + y
      }}
    }

    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))
}