shithub: mc

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