shithub: mc

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