shithub: mc

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