shithub: mc

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