shithub: mc

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