shithub: mc

ref: 30c662571c4f64f72171cca0efc7bedc59bd53fa
dir: /test/nestedgoto.myr/

View raw version
use std

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