[gnu.g++.bug] program causes infinite loop in g++ 1.32

schmidt%crimee.ics.uci.edu@PARIS.ICS.UCI.EDU ("Douglas C. Schmidt") (01/03/89)

Hi,

  The following short C++ program causes g++ 1.32 to go into
an infinite loop in the functions:

actualparameterlist()

and 

convert_for_initialization()

Here's the code:

----------------------------------------
class Base {
public:
   Base ( Base &b ) {
   }
   Base ( Base B );
};

class Derived : public Base {
   Derived ( Base &b ) : Base ( b ) {
   }
};
----------------------------------------

Doug