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

11 lines
197 B
Kotlin
Vendored

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