Files
kotlin-fork/j2k/tests/testData/ast/for/falseForRange.kt
T

7 lines
80 B
Kotlin

run {
var i = 0
while (i * 2 <= 10) {
foo(i)
i++
}
}