shithub: mc

ref: 6863b80514aa42c6983d412823970a8c80e0b0cc
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)
}