shithub: mc

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