shithub: mc

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