shithub: mc

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