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

9 lines
203 B
Kotlin
Vendored

public fun foo() {
var i: Any = 1
if (i is Int) {
while (i != 10) {
i++ // Here smart cast should not be performed due to a successor
i = ""
}
}
}