shithub: mc

ref: 44e5ed3ebbb9c3a8e5e5d809e0f5a6991c4b9570
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
}