Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt27933.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

17 lines
276 B
Plaintext
Vendored

fun box(): String {
var r: String = ""
when {
EQEQ(arg0 = r, arg1 = "").not() -> { // BLOCK
}
else -> { // BLOCK
r = r.plus(other = "O")
}
}
when {
EQEQ(arg0 = r, arg1 = "O") -> { // BLOCK
r = r.plus(other = "K")
}
}
return r
}