shithub: mc

ref: 5f5b3c226cdea602baa23cf346ec2f3f367d81ee
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)
}