shithub: mc

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