shithub: mc

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