summaryrefslogtreecommitdiff
path: root/test/files/run/t5614.scala
diff options
context:
space:
mode:
authorDominik Gruntz <dominik.gruntz@fhnw.ch>2012-03-28 12:03:51 +0200
committerDominik Gruntz <dominik.gruntz@fhnw.ch>2012-03-28 12:03:51 +0200
commit017f48e00b863ecfc6a39c16c89a6ccb1dcde13d (patch)
treebafad2824b2eff4fa755f5c443032dfd73dc707d /test/files/run/t5614.scala
parentd078b58961014c5eaa7540c4cec733679dc8965c (diff)
downloadscala-017f48e00b863ecfc6a39c16c89a6ccb1dcde13d.tar.gz
scala-017f48e00b863ecfc6a39c16c89a6ccb1dcde13d.tar.bz2
scala-017f48e00b863ecfc6a39c16c89a6ccb1dcde13d.zip
String interpolation bug fix
This change fixes a bug in class StringContext.scala. Parts were not correctly added to the resulting string. This commit includes a test case which covers the example reported in the bug. Closes SI-5614.
Diffstat (limited to 'test/files/run/t5614.scala')
-rw-r--r--test/files/run/t5614.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/t5614.scala b/test/files/run/t5614.scala
new file mode 100644
index 0000000000..7c85c33f12
--- /dev/null
+++ b/test/files/run/t5614.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ val str = s"a\nb"
+ println(str.length)
+ println(str)
+}