shithub: mc

ref: 8a92415ad8220c1f651b0ed6338efb072e848d5c
dir: /test/nestedgoto.myr/

View raw version
use std

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