shithub: mc

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