shithub: mc

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