Files

9 lines
118 B
Kotlin
Vendored

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