shithub: mc

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