shithub: mc

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