This is the mail archive of the gcc-prs@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]

Re: c++/7964: [mainline regression] ICE in build_base_path


The following reply was made to PR c++/7964; it has been noted by GNATS.

From: Reichelt <reichelt@igpm.rwth-aachen.de>
To: snyder@fnal.gov, gcc-gnats@gcc.gnu.org, gcc-bugs@gcc.gnu.org,
        nobody@gcc.gnu.org
Cc:  
Subject: Re: c++/7964: [mainline regression] ICE in build_base_path
Date: Sun, 27 Oct 2002 18:21:47 +0200

 Hi,
 
 here's a slightly cleaned-up testcase:
 
 -------------------------snip here--------------------------
 struct A
 {
   virtual void foo() const;
 };
 
 struct B : virtual A {};
 
 template<typename T> struct C : B
 {
   void bar() const { B::foo(); }
 };
 
 template struct C<int>;
 -------------------------snip here--------------------------
 
 Greetings,
 Volker
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7964
 
 


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