shithub: mc

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