shithub: mc

ref: 6041d0a1d135a8085dad7a76ec66dc42151065ab
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)
}