Files
kotlin/compiler/testData/codegen/box/smartCasts/nullSmartCast.kt
2015-11-25 18:26:25 +03: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)