shithub: mc

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