shithub: mc

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