summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure8a.scala
blob: 5e54bfc8c7bca010d847d43fb9c35d90325fc51d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import scala.reflect.Code._
import scala.tools.nsc.reporters._
import scala.tools.nsc.Settings
import reflect.runtime.Mirror.ToolBox

object Test extends App {
  class Foo(val y: Int) {
    def fun = lift{y}
  }

  val reporter = new ConsoleReporter(new Settings)
  val toolbox = new ToolBox(reporter)
  val ttree = toolbox.typeCheck(new Foo(10).fun.tree)
  val dyn = toolbox.runExpr(ttree)
  val foo = dyn.asInstanceOf[Int]
  println(foo)
}