shithub: mc

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