shithub: mc

ref: 03f0c0961f2350d59e9e3707ef3dac0ec196f61c
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
}