shithub: mc

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