shithub: mc

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