shithub: mc

ref: 52a5be5adc041a5dc8daa1238a1f307c728e75c8
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
}