shithub: mc

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