shithub: mc

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