shithub: mc

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