shithub: mc

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