shithub: mc

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