shithub: mc

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