shithub: mc

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