shithub: mc

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