Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/kt1953.kt
T
2021-10-01 17:18:49 +03:00

11 lines
182 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
fun box(): String {
val sb = StringBuilder()
operator fun String.unaryPlus() {
sb.append(this)
}
+"OK"
return sb.toString()!!
}