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++/52685] New: [4.7/4.8 Regression] ICE in copy_binfo


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

             Bug #: 52685
           Summary: [4.7/4.8 Regression] ICE in copy_binfo
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: jakub@gcc.gnu.org
                CC: fabien@gcc.gnu.org, jason@gcc.gnu.org


template <typename T>
struct A
{
  template <typename U>
  struct B : public A <B<U> >
  {
    struct C : public B<U>
    {
    };
  };
};

ICEs starting with http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=184328


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