summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2015-02-08 15:35:43 -0800
committerSom Snytt <som.snytt@gmail.com>2015-04-08 09:20:24 -0700
commit996d066bb3ef0fc91acab18a5502bb649929881a (patch)
tree22d59bd700b04f04c40d3c2405bf935415880a68 /test/files
parentb60de05a2e1257d16b7876856e26feec7bb81870 (diff)
downloadscala-996d066bb3ef0fc91acab18a5502bb649929881a.tar.gz
scala-996d066bb3ef0fc91acab18a5502bb649929881a.tar.bz2
scala-996d066bb3ef0fc91acab18a5502bb649929881a.zip
SI-3368 Promote xml option to -Xxml
As long as Scala does XML literals, there is probably parsing behavior worth configuring. Therefore, the umbrella option is promoted to `-Xxml`. It was tempting to make it `-XML`, but we resisted.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t3368.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3368.scala b/test/files/run/t3368.scala
index aaf34b43fb..15acba5099 100644
--- a/test/files/run/t3368.scala
+++ b/test/files/run/t3368.scala
@@ -14,5 +14,5 @@ object Test extends ParserTest {
}
"""
- override def extraSettings = s"${super.extraSettings} -Yxml:coalescing"
+ override def extraSettings = s"${super.extraSettings} -Xxml:coalescing"
}