shithub: mc

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