shithub: mc

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