shithub: mc

ref: 20cea781b95e1a6c1fa2f6cd2bb6c05ec9a4480d
dir: /test/nestedgoto.myr/

View raw version
use std

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