shithub: mc

ref: f8e8b084dad7b4b7ea813bc4b612f64a07f27cd7
dir: /test/local-labels.myr/

View raw version
use std

const main = {
	goto foo
	std.exit(123)
:foo
	std.exit(bar())
}

const bar = {
	goto foo
	-> 42
:foo
	-> 10
}