summaryrefslogtreecommitdiff
path: root/test/pending/run/t5258c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5258c.scala')
-rw-r--r--test/pending/run/t5258c.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/pending/run/t5258c.scala b/test/pending/run/t5258c.scala
new file mode 100644
index 0000000000..b0d16ba0b1
--- /dev/null
+++ b/test/pending/run/t5258c.scala
@@ -0,0 +1,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)
+} \ No newline at end of file