shithub: mc

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