shithub: mc

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