shithub: mc

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