shithub: mc

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