shithub: mc

ref: 1960f69c112fec8cc78929ea6cd6596ce71abeab
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)
}