shithub: mc

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