shithub: mc

ref: 8fda8a0adbb44f4e63bb86256d9f56700d79f301
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
}