summaryrefslogtreecommitdiff
path: root/test/files/run/reify_closures10.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_closures10.scala')
-rw-r--r--test/files/run/reify_closures10.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/run/reify_closures10.scala b/test/files/run/reify_closures10.scala
new file mode 100644
index 0000000000..b6ec8e8911
--- /dev/null
+++ b/test/files/run/reify_closures10.scala
@@ -0,0 +1,14 @@
+import scala.reflect.Code._
+import scala.tools.nsc.reporters._
+import scala.tools.nsc.Settings
+import reflect.runtime.Mirror.ToolBox
+
+object Test extends App {
+ val x = 2
+ val y = 3
+ val code = lift{println(x + y); x + y}
+
+ val reporter = new ConsoleReporter(new Settings)
+ val toolbox = new ToolBox(reporter)
+ println(toolbox.runExpr(code.tree))
+}