shithub: mc

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