shithub: mc

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