shithub: mc

ref: 9c6173cb0b582ce5a5115ea096a0865c7e2334bb
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
}