shithub: mc

ref: 7680e160787aad4408be9535856f4c3a2ba72337
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)
}