shithub: mc

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