blob: 92c4f4365402daaa6f49211741e240bf7c5c6cdf [file]
fun test(cond1: Boolean) {
do {
if (cond1) continue
val cond2 = false
} while (cond2) // cond2 may be not defined here
}