shithub: mc

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