shithub: mc

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