shithub: mc

ref: 71af8b2acb1e7eefa2101f0074e4fe0a631a6220
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
}