shithub: mc

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