shithub: mc

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