shithub: mc

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