Files
2023-07-11 08:28:04 +00:00

11 lines
120 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo() {
var i = 1
while (i < 10) {
bar()
i = i.inc()
}
}
fun bar() {}