aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-bundle-repl.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/macro-bundle-repl.check')
-rw-r--r--tests/disabled/macro/run/macro-bundle-repl.check24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/macro-bundle-repl.check b/tests/disabled/macro/run/macro-bundle-repl.check
new file mode 100644
index 000000000..75c5c2add
--- /dev/null
+++ b/tests/disabled/macro/run/macro-bundle-repl.check
@@ -0,0 +1,24 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala> import scala.language.experimental.macros
+import scala.language.experimental.macros
+
+scala> import scala.reflect.macros.blackbox.Context
+import scala.reflect.macros.blackbox.Context
+
+scala> class Bar(val c: Context) { def impl = { import c.universe._; c.Expr[Unit](q"()") } };def bar: Unit = macro Bar.impl
+defined class Bar
+defined term macro bar: Unit
+
+scala> bar
+
+scala> class Foo(val c: Context) { def impl = { import c.universe._; c.Expr[Unit](q"()") } }
+defined class Foo
+
+scala> def foo: Unit = macro Foo.impl
+defined term macro foo: Unit
+
+scala> foo
+
+scala> :quit