added test case for KT-2355

This commit is contained in:
James Strachan
2012-07-03 13:57:21 +01:00
parent 25bf753369
commit b9ffce68e4
4 changed files with 76 additions and 0 deletions
@@ -0,0 +1,11 @@
package foo
fun box(): Boolean {
val a = "abc"
val b = "def"
val message = "a = $a, b = $b"
if (message != "a = abc, b = def") return false
return true
}