shithub: mc

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