shithub: mc

ref: 418926d9aa00b5eb1b90cf2770610e50c2c0a6cd
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
}