shithub: mc

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