shithub: mc

ref: 4adc2f773870b45442ed27e5e794ade92e4fe2f0
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
}