shithub: mc

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