shithub: mc

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