shithub: mc

ref: 0ce2bbf3b5dbb9c899a9a680ff8262be44b1d5ef
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
}