aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-repl-dontexpand.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-repl-dontexpand.check')
-rw-r--r--tests/pending/run/macro-repl-dontexpand.check16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/run/macro-repl-dontexpand.check b/tests/pending/run/macro-repl-dontexpand.check
deleted file mode 100644
index 6ecc9245f..000000000
--- a/tests/pending/run/macro-repl-dontexpand.check
+++ /dev/null
@@ -1,16 +0,0 @@
-Type in expressions to have them evaluated.
-Type :help for more information.
-
-scala> def bar1(c: scala.reflect.macros.blackbox.Context) = ???
-bar1: (c: scala.reflect.macros.blackbox.Context)Nothing
-
-scala> def foo1 = macro bar1
-defined term macro foo1: Nothing
-
-scala> def bar2(c: scala.reflect.macros.whitebox.Context) = ???
-bar2: (c: scala.reflect.macros.whitebox.Context)Nothing
-
-scala> def foo2 = macro bar2
-defined term macro foo2: Nothing
-
-scala> :quit