shithub: mc

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