shithub: mc

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