shithub: mc

ref: dfc57771d78d1bc4e4e9ad9494f05554f96f9841
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
}