shithub: mc

ref: 4883457b466c6eb8d7f5f281e0cda5fcfa568733
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)
}