shithub: mc

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