shithub: mc

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