shithub: mc

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