shithub: mc

ref: 24ad64cfeecd3e2e32b116baaa04456f7cf8c4df
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)
}