shithub: mc

ref: b6afe89b0d5928f317e8d554cec49d6e8f40a3d8
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
}