shithub: mc

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