summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-repl-dontexpand.check')
-rw-r--r--test/files/run/macro-repl-dontexpand.check5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/run/macro-repl-dontexpand.check b/test/files/run/macro-repl-dontexpand.check
index d2bb89b6f7..35845f0cff 100644
--- a/test/files/run/macro-repl-dontexpand.check
+++ b/test/files/run/macro-repl-dontexpand.check
@@ -3,7 +3,10 @@ Type :help for more information.
scala>
-scala> def macro foo = ???
+scala> def bar(c: scala.reflect.makro.Context) = ???
+bar: (c: scala.reflect.makro.Context)Nothing
+
+scala> def foo = macro bar
foo: Any
scala>