shithub: mc

ref: 49a846b16c0187b5f59fc7bb7c336b919f5342ac
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
}