shithub: mc

ref: 74270f8f47a704652ca301975da7ff88926e5cc8
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)
}