shithub: mc

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