shithub: mc

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