shithub: mc

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