summaryrefslogblamecommitdiff
path: root/test/files/run/reify_closure5a.scala
blob: 193e18103a85bca99b792a70d23b42d1761391fa (plain) (tree)
1
2
3
4
5
6
7
8
9





                                         
                                             
                   
      


                                                    
                                       





                                    
import scala.tools.nsc.reporters._
import scala.tools.nsc.Settings
import reflect.runtime.Mirror.ToolBox

object Test extends App {
  def foo[T](ys: List[T]): Int => Int = {
    val fun = reflect.Code.lift{(x: Int) => {
      x + ys.length
    }}

    val reporter = new ConsoleReporter(new Settings)
    val toolbox = new ToolBox(reporter)
    val dyn = toolbox.runExpr(fun.tree)
    dyn.asInstanceOf[Int => Int]
  }

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