shithub: mc

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