summaryrefslogtreecommitdiff
path: root/test/files/neg/t5510.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-05-10 11:25:39 -0700
committerPaul Phillips <paulp@improving.org>2013-05-10 11:25:39 -0700
commitece84b704e20c76efab15d82b565544ec350c950 (patch)
tree950baf597c312b393fce6e5dcbbdd93714f72fb2 /test/files/neg/t5510.check
parent34d28aaaa8abd0ef9f9b29ec201b59d0d1e335db (diff)
parent25f49cb392846052025d745e2403b681793ce647 (diff)
downloadscala-ece84b704e20c76efab15d82b565544ec350c950.tar.gz
scala-ece84b704e20c76efab15d82b565544ec350c950.tar.bz2
scala-ece84b704e20c76efab15d82b565544ec350c950.zip
Merge pull request #2461 from scalamacros/ticket/7325
Some fixes for string interpolation
Diffstat (limited to 'test/files/neg/t5510.check')
-rw-r--r--test/files/neg/t5510.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t5510.check b/test/files/neg/t5510.check
index 04220e79bb..322a2f5e25 100644
--- a/test/files/neg/t5510.check
+++ b/test/files/neg/t5510.check
@@ -1,15 +1,15 @@
t5510.scala:2: error: unclosed string literal
val s1 = s"xxx
- ^
+ ^
t5510.scala:3: error: unclosed string literal
val s2 = s"xxx $x
^
t5510.scala:4: error: unclosed string literal
val s3 = s"xxx $$
- ^
+ ^
t5510.scala:5: error: unclosed string literal
val s4 = ""s"
- ^
+ ^
t5510.scala:6: error: unclosed multi-line string literal
val s5 = ""s""" $s1 $s2 s"
^