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

7 lines
90 B
Kotlin
Vendored

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