shithub: mc

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