shithub: mc

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