blob: 4a37fb1a138c0a0a7f5ec8b254827715b639fe00 [file] [log] [blame]
fun test(b: Boolean) {
for (i in 1..10) {
if (b) break;
continue;
}
}