This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/51429] New: [4.7 Regression] ICE with invalid use of overloaded member function


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.]


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]