shithub: mc

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