shithub: mc

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