shithub: mc

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