shithub: mc

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