shithub: mc

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