shithub: mc

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