shithub: mc

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