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

                         

                                                  
                   
      
 
                             
                                       


                                



                                  
 
import scala.reflect.mirror._

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

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

  var fun1 = foo(List(1, 2, 3))
  println(fun1(10))
  var fun2 = foo(List(1, 2, 3, 4))
  println(fun2(10))
}