Files
kotlin/compiler/testData/codegen/box/strings/stringBuilderAppend.kt
2014-10-09 12:23:06 +04:00

17 lines
222 B
Kotlin

class A() {
override fun toString(): String {
return "A"
}
}
fun box() : String {
val s = "1" + "2" + 3 + 4L + 5.0 + 6F + '7' + A()
if (s != "12345.06.07A") return "fail $s"
return "OK"
}