shithub: mc

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