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

7 lines
94 B
Kotlin
Vendored

fun test(b: Boolean) {
do {
if (b) break;
continue;
} while (true);
}