shithub: mc

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