summaryrefslogtreecommitdiff
path: root/test/files/neg/t9127.scala
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2015-01-31 15:55:35 -0800
committerSom Snytt <som.snytt@gmail.com>2015-02-21 17:12:44 -0800
commitdcd4d6700660c480b29eb4c8aeba77403c112d5f (patch)
tree84ee94186fee57d20df4a240e7459f6bf2b9df80 /test/files/neg/t9127.scala
parent3a32ae3651f69237bde32598674bc135ad9e4064 (diff)
downloadscala-dcd4d6700660c480b29eb4c8aeba77403c112d5f.tar.gz
scala-dcd4d6700660c480b29eb4c8aeba77403c112d5f.tar.bz2
scala-dcd4d6700660c480b29eb4c8aeba77403c112d5f.zip
SI-9127 Xlint doesn't think spaces are significant
For purposes of warning about missing interpolators, such as `"$greeting"` when the intended code was `s"$greeting"`, spaces are no longer significant. The heuristic was previously intended to allow compileresque strings, where the dollar sign is a common prefix. Currently, the Xlint warning can be selectively disabled.
Diffstat (limited to 'test/files/neg/t9127.scala')
-rw-r--r--test/files/neg/t9127.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t9127.scala b/test/files/neg/t9127.scala
new file mode 100644
index 0000000000..c0746144eb
--- /dev/null
+++ b/test/files/neg/t9127.scala
@@ -0,0 +1,7 @@
+
+trait X {
+ val s = "hello"
+ val t = "$s"
+ val u = "a${s}b"
+ val v = "a$s b"
+}