shithub: mc

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