shithub: mc

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