shithub: mc

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