shithub: mc

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