shithub: mc

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