shithub: mc

ref: 437f6d851e88446fba90495a3175f02e8d3d390c
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)
}