shithub: mc

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