shithub: mc

ref: 61766f9822581c7f7ed44c66ff975517b350987a
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)
}