shithub: mc

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