shithub: mc

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