summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure5b.scala
blob: 0e506bf7b56b91f6b21f4683ea3ab4ca88572b74 (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[T](ys: List[T]): Int => Int = {
    class Foo[T](ys: List[T]) {
      val fun = reify{(x: Int) => {
        x + ys.length
      }}
    }

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

  println(foo(List(1, 2, 3))(10))
  println(foo(List(1, 2, 3, 4))(10))
}