shithub: mc

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