7 lines
94 B
Kotlin
Vendored
7 lines
94 B
Kotlin
Vendored
fun test(b: Boolean) {
|
|
for (i in 1..10) {
|
|
if (b) break;
|
|
continue;
|
|
}
|
|
}
|