shithub: mc

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