shithub: mc

ref: 8fb120014e1f3830c767c8ab3ee072ac0d41012a
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)
}