shithub: mc

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