shithub: mc

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