shithub: mc

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