shithub: mc

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