10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
// "Replace with label label@" "true"
|
|
|
|
fun run(block: () -> Unit) = block()
|
|
|
|
fun foo() {
|
|
run label@ {
|
|
return@label
|
|
}
|
|
}
|