Files
kotlin-fork/compiler/testData/codegen/regressions/kt1953_class.kt
T

15 lines
226 B
Kotlin

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