// SIBLING: fun foo(a: Int) { val b: Int = 1 var t = a while(t > 0) { if (t == 2) continue println(t) if (t == 1) break t-- } }