blob: 1a817f35633855fc8e5d7a656e185f3426d79ebc [file] [log] [blame]
// FIR_IDENTICAL
inline fun l2f1(p: () -> Unit) {}
fun label2simple1() {
l2f1 { return@label2simple1 }
fun local() {
l2f1 { return@local }
}
labelLocal@ fun labelledLocal() {
l2f1 { return@labelLocal }
}
}
fun main() {
label2simple1()
}