shithub: mc

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