shithub: mc

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