shithub: mc

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