Path: utzoo!telly!attcan!uunet!tut.cis.ohio-state.edu!MCC.COM!rfg From: rfg@MCC.COM (Ron Guilmette) Newsgroups: gnu.g++.bug Subject: BUG in G++ 1.33.0 - compiler loops Message-ID: <8902222332.AA15487@riunite.aca.mcc.com> Date: 22 Feb 89 23:32:22 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 16 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); };