shithub: mc

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