shithub: mc

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