shithub: mc

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