shithub: mc

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