shithub: mc

ref: 30c662571c4f64f72171cca0efc7bedc59bd53fa
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
}