summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure8b.scala
blob: 9e37e4e09a60d17ab888a4434d8b382739be1fa8 (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(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)
}