shithub: mc

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