shithub: mc

ref: fbfb5b8b56c027a676e1e0c6a78feadcc23a8606
dir: /test/nestedgoto.myr/

View raw version
use std

const main = {
    match 0
    | 0:
        goto ok
    | 1:
        :ok
        -> void
    | _:
    ;;
    std.exit(1)
}