shithub: mc

ref: 330fd3f777d230d333c58d609a0eb2330e30d6df
dir: /test/nestedgoto.myr/

View raw version
use std

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