shithub: mc

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