shithub: mc

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