shithub: mc

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