shithub: mc

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