shithub: mc

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