shithub: mc

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