shithub: mc

ref: 460b6ed7be00fe2bbf4807bc67c49e07d10384f0
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)
}