shithub: mc

ref: 8a2b92eff783f9489be2d6ed28187c0e69cc26ca
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
}