shithub: mc

ref: 65ec134c5fc370d6df3382edb4cc633bd7802e3e
dir: /test/nestedgoto.myr/

View raw version
use std

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