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

9 lines
218 B
Kotlin
Vendored

public fun foo(p: String?, y: String?): Int {
do {
// After the check, smart cast should work
if (y == null) break
y.length
p!!.length
} while (true)
return y?.length ?: -1
}