shithub: mc

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

View raw version
use std

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