shithub: mc

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