From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5081 invoked by alias); 4 Jul 2006 23:17:23 -0000 Received: (qmail 5061 invoked by uid 48); 4 Jul 2006 23:17:17 -0000 Date: Tue, 04 Jul 2006 23:17:00 -0000 Subject: [Bug c++/28253] New: [4.0/4.1/4.2 regression] ICE with invalid covariant return X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "reichelt at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2006-07/txt/msg00219.txt.bz2 List-Id: The following invalid testcase triggers an ICE since GCC 3.4.0: ========================================= struct A { virtual A* foo(); }; struct B : virtual A { virtual B* foo(); }; struct C : B { virtual C& foo(); }; ========================================= bug.cc:13: error: conflicting return type specified for 'virtual C& C::foo()' bug.cc:8: error: overriding 'virtual B* B::foo()' bug.cc:12: internal compiler error: in update_vtable_entry_for_fn, at cp/class.c:2105 Please submit a full bug report, [etc.] -- Summary: [4.0/4.1/4.2 regression] ICE with invalid covariant return Product: gcc Version: 4.2.0 Status: UNCONFIRMED Keywords: ice-on-invalid-code, error-recovery, monitored Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: reichelt at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28253