shithub: mc

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