shithub: mc

ref: 2b4787aec89f8d1dcd75c3dc022a8a137c5f5178
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
}