shithub: mc

ref: 14c0d8b03e8390c4f06bde071294a0c2325e8c7f
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
}