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, 0 insertions, 24 deletions
diff --git a/test/files/run/reify_newimpl_24.check b/test/files/run/reify_newimpl_24.check
deleted file mode 100644
index 66b18c790e..0000000000
--- a/test/files/run/reify_newimpl_24.check
+++ /dev/null
@@ -1,24 +0,0 @@
-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>