Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/smartCastOnIf.fir.kt
T

11 lines
170 B
Kotlin
Vendored

fun baz(s: String?): Int {
return if (s == null) {
""
}
else {
val u: String? = null
if (u == null) return 0
u
}.length
}