shithub: mc

ref: 678f608c8c72b821d0258ecca4028e0e8c90df6a
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)
}