shithub: mc

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