shithub: mc

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