blob: cd0fd86376b2a50d362e94147fab2e3dc9a4c4cd [file]
fun test(b: Boolean) {
do {
if (b) break;
continue;
} while (true);
}