shithub: mc

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