summaryrefslogtreecommitdiff
path: root/test/files/run/reify_anonymous.scala
blob: af16f2f8fd59449383dfb462b7c436dcc7c57081 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import scala.tools.nsc.reporters._
import scala.tools.nsc.Settings
import reflect.runtime.Mirror.ToolBox

object Test extends App {
  val code = scala.reflect.Code.lift{
    println(new {def x = 2; def y = x * x}.y)
  };

  val reporter = new ConsoleReporter(new Settings)
  val toolbox = new ToolBox(reporter)
  toolbox.runExpr(code.tree)
}