shithub: mc

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