shithub: mc

ref: 0158f58f2cd9ff08fc4c8e09e6f9ce87281c9c02
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
}