[gnu.g++.bug] BUG in G++ 1.36.1

rfg@ICS.UCI.EDU (11/09/89)

This may have been fixed in the "official" g++ 1.36.1, but it seems that
if you say:

	class friendly {
		int splat;
	public:
		friend class foo, bar;
	};

neither of the classes foo or bar will get visibility to splat.  It is
almost as if the friend declaration had turned into a compile-time NO-OP.

If on the other hand, you had written the friend class declaration as
two separate declarations, then it works correctly (i.e. as expected).

// rfg