shithub: mc

ref: 7596ee5f651a67a62de4b009d8647f5b2cf729fb
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)
}