9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
fun test(b: Boolean) {
|
|
while (true) {
|
|
if (<expr>break</expr>) {
|
|
"OK"
|
|
} else {
|
|
continue
|
|
}
|
|
}
|
|
} |