shithub: mc

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