shithub: mc

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