7 lines
90 B
Kotlin
Vendored
7 lines
90 B
Kotlin
Vendored
fun test(b: Boolean) {
|
|
while (true) {
|
|
if (b) break;
|
|
continue;
|
|
}
|
|
}
|