shithub: mc

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