shithub: mc

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