Add tests for concatenation of strings

This commit is contained in:
Natalia Ukhorskaya
2014-01-17 11:43:29 +04:00
parent cf5dc5b98b
commit 2ddda59465
@@ -30,3 +30,6 @@ val prop8 = "a${1.toDouble()}"
// val prop9: \"ab\"
val prop9 = "a" + "b"
// val prop10: \"abb\"
val prop10 = prop9 + "b"