shithub: mc

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