rfg@MCC.COM (Ron Guilmette) (02/23/89)
The following short piece of code causes G++ 1.33.0 to loop
forever. This occurs on a Sun3 under SunOS 3.something.
/*
Description - check that overloaded functions whose only difference
is in their argument defaults or in their return types
are flagged as errors.
*/
class c1 {
public:
c1 (int i1, int j1);
c1 (int i2 = 77, int j2 = 35);
};