shithub: mc

ref: 71bba431594a726d16fe726a71c7c2e7ab6a04d1
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)
}