shithub: mc

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