shithub: mc

ref: 6e86aec813afcb79caf42dc5c01a422c60fa50f3
dir: /test/nestedgoto.myr/

View raw version
use std

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