shithub: mc

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