shithub: mc

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