summaryrefslogtreecommitdiff
path: root/test/pending/run/t5258c.scala
blob: b0d16ba0b144c9d3c2cacd4c6a3601f7db6794a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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{
    object E extends Enumeration { val foo, bar = Value }
    println(E.foo)
  };

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