shithub: mc

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