blob: 9f1935c78515fa780d3710c1e84bee25f9860a46 [file]
// IGNORE_BACKEND_FIR: JVM_IR
fun String?.foo() = this ?: "OK"
fun foo(i: Int?): String {
if (i == null) return i.foo()
return "$i"
}
fun box() = foo(null)