shithub: mc

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