shithub: mc

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