summaryrefslogtreecommitdiff
path: root/test/files/run/macro-repl-dontexpand.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2012-04-13 15:47:39 -0700
committerMartin Odersky <odersky@gmail.com>2012-04-13 16:20:24 -0700
commitb5757577c520e6339e4278fa91f725e66561f73e (patch)
tree387943eb2f4cff92aa222fbb1ad19965a446693a /test/files/run/macro-repl-dontexpand.scala
parent3324a7215c87c61791f3e4afb49bc63cf9c80f12 (diff)
downloadscala-b5757577c520e6339e4278fa91f725e66561f73e.tar.gz
scala-b5757577c520e6339e4278fa91f725e66561f73e.tar.bz2
scala-b5757577c520e6339e4278fa91f725e66561f73e.zip
Fixed tests to account for SIP 18
Diffstat (limited to 'test/files/run/macro-repl-dontexpand.scala')
-rw-r--r--test/files/run/macro-repl-dontexpand.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/macro-repl-dontexpand.scala b/test/files/run/macro-repl-dontexpand.scala
index 9889a8ffdf..cd1b2e1969 100644
--- a/test/files/run/macro-repl-dontexpand.scala
+++ b/test/files/run/macro-repl-dontexpand.scala
@@ -1,9 +1,9 @@
import scala.tools.partest.ReplTest
object Test extends ReplTest {
- override def extraSettings = "-Xmacros"
+ override def extraSettings = "-language:experimental.macros"
def code = """
|def bar(c: scala.reflect.makro.Context) = ???
|def foo = macro bar
|""".stripMargin
-} \ No newline at end of file
+}