shithub: mc

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