436b0ec873
(cherry picked from commit 4a96589)
7 lines
112 B
Kotlin
Vendored
7 lines
112 B
Kotlin
Vendored
fun test(cond1: Boolean) {
|
|
do {
|
|
if (cond1) continue
|
|
val cond2 = false
|
|
} while (cond2)
|
|
}
|