shithub: mc

ref: 60bc966a9154e134e143c7cfeb001a93761e2d5e
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)
}