shithub: mc

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