the closest you can do is this: ``` fun test1() { ...
# announcements
e
the closest you can do is this:
Copy code
fun test1() {
    test2 { return }
}

inline fun test2(finish: () -> Nothing) {
    a = get("a") or finish
    b = get("b") or finish
    c = get("c") or finish
}