aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/strings.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/strings.scala')
-rw-r--r--tests/untried/pos/strings.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/untried/pos/strings.scala b/tests/untried/pos/strings.scala
new file mode 100644
index 000000000..9fe8cfd94
--- /dev/null
+++ b/tests/untried/pos/strings.scala
@@ -0,0 +1,10 @@
+// martin 1-3-2002: it seems there is a problem with the way Serializable is loaded.
+object test {
+
+ def f() = "hello".concat("world");
+
+}
+// #1000
+object A {
+ println("""This a "raw" string ending with a "double quote"""")
+}