[gnu.g++.bug] g++ visibility bug

ekrell@ulysses.att.com (09/29/88)

the following program compiles with g++ 1.27 (and with cfront 1.2),
but fails on cfront 2.0 and it's clearly illegal c++ code.

class B {
private:	B();
};

B *foo() {return new B;}