shithub: mc

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