shithub: mc

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