shithub: mc

ref: 96c8217e913d8d6de22bbb1aa3624c26e66838fc
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
}