shithub: mc

ref: 3b5a5cd9b9843d0ba824c756911456d57cf1c1be
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
}