shithub: mc

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