shithub: mc

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