shithub: mc

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