shithub: mc

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