shithub: mc

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