Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/kt1953.kt
T

10 lines
157 B
Kotlin
Vendored

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