shithub: mc

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