blob: da2ccce360bcc81a18b05aef41850c1178adcd9a [file]
// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
fun box(): String {
val sb = StringBuilder()
operator fun String.unaryPlus() {
sb.append(this)
}
+"OK"
return sb.toString()!!
}