shithub: mc

ref: 97f03b720b5d8656a316ce1ca14b89d4a411c59f
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
}