shithub: mc

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