shithub: mc

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