shithub: mc

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