shithub: mc

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