Files
kotlin/compiler/testData/codegen/box/extensionFunctions/kt1953_class.kt

15 lines
240 B
Kotlin
Vendored

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