shithub: mc

ref: b00f9d006411591f447f505f842f1b681b7862b3
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)
}