shithub: mc

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