shithub: mc

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