shithub: mc

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

View raw version
use std

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