shithub: mc

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