shithub: mc

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