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

8 lines
119 B
Kotlin
Vendored

public fun foo() {
var i: Int? = 1
if (i != null) {
while (i != 10) {
i++
}
}
}