shithub: mc

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