summaryrefslogtreecommitdiff
path: root/test/files/pos/strings.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/strings.scala')
-rw-r--r--test/files/pos/strings.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/strings.scala b/test/files/pos/strings.scala
index 3bf40e3dda..9fe8cfd94b 100644
--- a/test/files/pos/strings.scala
+++ b/test/files/pos/strings.scala
@@ -4,3 +4,7 @@ object test {
def f() = "hello".concat("world");
}
+// #1000
+object A {
+ println("""This a "raw" string ending with a "double quote"""")
+}