shithub: mc

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