shithub: mc

ref: 5f5b3c226cdea602baa23cf346ec2f3f367d81ee
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
}