shithub: mc

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