shithub: mc

ref: d5869067c222619979e82e95ca511cb1d217ce18
dir: /test/usedef.myr/

View raw version
/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}