shithub: mc

ref: 4ff322bbbc9b8c181b6f48b55c72f5482cec3c88
dir: /test/nestedgoto.myr/

View raw version
use std

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