Files
kotlin-fork/compiler/testData/cfg/controlStructures/continueInFor.kt
T
2014-09-05 18:31:53 +04:00

7 lines
94 B
Kotlin
Vendored

fun test(b: Boolean) {
for (i in 1..10) {
if (b) break;
continue;
}
}