shithub: mc

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