aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-bundle-repl.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-bundle-repl.check')
-rw-r--r--tests/pending/run/macro-bundle-repl.check24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/pending/run/macro-bundle-repl.check b/tests/pending/run/macro-bundle-repl.check
deleted file mode 100644
index 75c5c2add..000000000
--- a/tests/pending/run/macro-bundle-repl.check
+++ /dev/null
@@ -1,24 +0,0 @@
-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