Files
kotlin-fork/compiler/testData/ir/irText/firProblems/explicitIncrement.kt.txt
T
2024-02-16 10:19:38 +00:00

12 lines
124 B
Kotlin
Vendored

fun bar() {
}
fun foo() {
var i: Int = 1
while (less(arg0 = i, arg1 = 10)) { // BLOCK
bar()
i = i.inc()
}
}