shithub: mc

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