shithub: mc

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

View raw version
use std

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