shithub: mc

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