blob: f6c605ea5f24f0303832ad04a6fc44a3746ffff6 [file]
// RUN_PIPELINE_TILL: FRONTEND
// FIR_IDENTICAL
fun call(f: () -> Unit) = f()
fun f1() {
outer@ while (true) {
call {
<!BREAK_OR_CONTINUE_JUMPS_ACROSS_FUNCTION_BOUNDARY!>break@outer<!>
}
}
}
fun f2() {
do {
fun inner() {
<!BREAK_OR_CONTINUE_JUMPS_ACROSS_FUNCTION_BOUNDARY!>continue<!>
}
} while (true)
}
/* GENERATED_FIR_TAGS: break, continue, doWhileLoop, functionDeclaration, functionalType, lambdaLiteral, localFunction,
whileLoop */