shithub: mc

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