Files
kotlin/compiler/testData/codegen/box/smartCasts/nullSmartCast.kt
2019-11-19 11:00:09 +03:00

10 lines
166 B
Kotlin
Vendored

// 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)