This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/51429] New: [4.7 Regression] ICE with invalid use of overloaded member function
- From: "reichelt at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 06 Dec 2011 00:33:56 +0000
- Subject: [Bug c++/51429] New: [4.7 Regression] ICE with invalid use of overloaded member function
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51429
Bug #: 51429
Summary: [4.7 Regression] ICE with invalid use of overloaded
member function
Classification: Unclassified
Product: gcc
Version: 4.7.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: reichelt@gcc.gnu.org
The following invalid code snippet triggers an ICE on trunk:
===================
struct A
{
void foo();
void foo(int);
A() { foo = 0; }
};
===================
bug.cc: In constructor 'A::A()':
bug.cc:6:15: internal compiler error: tree check: expected tree that contains
'decl common' structure, have 'baselink' in cxx_incomplete_type_diagnostic, at
cp/typeck2.c:431
Please submit a full bug report, [etc.]