summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-repl-dontexpand.scala')
-rw-r--r--test/files/run/macro-repl-dontexpand.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/macro-repl-dontexpand.scala b/test/files/run/macro-repl-dontexpand.scala
index 254bce894c..9889a8ffdf 100644
--- a/test/files/run/macro-repl-dontexpand.scala
+++ b/test/files/run/macro-repl-dontexpand.scala
@@ -3,6 +3,7 @@ import scala.tools.partest.ReplTest
object Test extends ReplTest {
override def extraSettings = "-Xmacros"
def code = """
- |def macro foo = ???
+ |def bar(c: scala.reflect.makro.Context) = ???
+ |def foo = macro bar
|""".stripMargin
} \ No newline at end of file