shithub: mc

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