Files
kotlin-fork/compiler/testData/codegen/box/smartCasts/nullSmartCast.kt
T
2021-10-02 06:14:35 +00:00

9 lines
136 B
Kotlin
Vendored

fun String?.foo() = this ?: "OK"
fun foo(i: Int?): String {
if (i == null) return i.foo()
return "$i"
}
fun box() = foo(null)