shithub: mc

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