5b987ccc15
I'm sure that there are similar cases that still don't work; please let me know if you find any #KT-1953 fixed
10 lines
143 B
Kotlin
10 lines
143 B
Kotlin
fun box(): String {
|
|
val sb = StringBuilder()
|
|
fun String.plus() {
|
|
sb.append(this)
|
|
}
|
|
|
|
+"OK"
|
|
return sb.toString()!!
|
|
}
|