shithub: mc

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