shithub: mc

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