shithub: mc

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