shithub: mc

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