shithub: mc

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