shithub: mc

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