shithub: mc

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