shithub: mc

ref: 262c61bdf8c98bb8a488b6e8766b6792d7d8c695
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
}