fun test(b: Boolean) { while (true) { if (b) { break } else { continue } } }