shithub: mc

ref: b9656ec7e120d1fced20ea5ca826c57f2de4fc84
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
}