shithub: mc

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