shithub: mc

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