shithub: mc

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

View raw version
use std

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