public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class
@ 2011-12-18 22:18 reichelt at gcc dot gnu.org
  2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: reichelt at gcc dot gnu.org @ 2011-12-18 22:18 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51614

             Bug #: 51614
           Summary: [4.6/4.7 Regression] ICE with ambiguous base class
    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 since GCC 4.6.0:

======================
struct A
{
  void foo();
};

struct B : A {};
struct C : A {};

struct D : B, C
{
  D() { A::foo(); }
};
======================

bug.cc: In constructor 'D::D()':
bug.cc:11:16: internal compiler error: in build_base_path, at cp/class.c:272
Please submit a full bug report, [etc.]

In earlier versions, a misleading error message was given:

bug.cc: In constructor 'D::D()':
bug.cc:11:16: error: cannot call member function 'void A::foo()' without object

Instead, the compiler should complain about an ambiguous base class.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-01-11  3:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
2011-12-30  6:12 ` pinskia at gcc dot gnu.org
2012-01-04 13:48 ` rguenth at gcc dot gnu.org
2012-01-10 18:22 ` jason at gcc dot gnu.org
2012-01-11  3:05 ` jason at gcc dot gnu.org
2012-01-11  3:13 ` jason at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).