shithub: mc

ref: 2ebbc72744b18b0e76d2aacb154bd0e4630bebc1
dir: /test/nestedgoto.myr/

View raw version
use std

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