shithub: mc

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