shithub: mc

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