summaryrefslogtreecommitdiff
path: root/test/files/run/reify_newimpl_24.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_newimpl_24.check')
-rw-r--r--test/files/run/reify_newimpl_24.check24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/files/run/reify_newimpl_24.check b/test/files/run/reify_newimpl_24.check
new file mode 100644
index 0000000000..66b18c790e
--- /dev/null
+++ b/test/files/run/reify_newimpl_24.check
@@ -0,0 +1,24 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala>
+
+scala> import scala.reflect.mirror._
+import scala.reflect.mirror._
+
+scala> {
+ val x = 2
+ val code = reify {
+ val y = reify { x }
+ y.eval
+ }
+ println(code.eval)
+}
+<console>:15: this splice cannot be resolved statically
+ y.eval
+ ^
+2
+
+scala>
+
+scala>