shithub: mc

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