summaryrefslogtreecommitdiff
path: root/test/files/run/reify_newimpl_22.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_newimpl_22.check')
-rw-r--r--test/files/run/reify_newimpl_22.check23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/files/run/reify_newimpl_22.check b/test/files/run/reify_newimpl_22.check
new file mode 100644
index 0000000000..51699cbc29
--- /dev/null
+++ b/test/files/run/reify_newimpl_22.check
@@ -0,0 +1,23 @@
+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 {
+ x
+ }
+ println(code.eval)
+}
+<console>:13: free term: Ident(newTermName("x")) defined by res0 in <console>:12:21
+ val code = reify {
+ ^
+2
+
+scala>
+
+scala>