shithub: mc

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