Files
kotlin-fork/j2k/testData/fileOrElement/for/infiniteFor.kt
T

5 lines
65 B
Kotlin
Vendored

fun foo() {
while (true) {
if (!stop()) break
}
}