aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_closure1.scala
blob: 6a5684b2aaa97daf5eedc9845bba1b3b2c3ca890 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 dotty.runtime.LegacyApp {
  def foo[T](ys: List[T]): Int => Int = {
    val fun = reify{(x: Int) => {
      x
    }}

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

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