shithub: mc

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