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]

Re: c++/4861


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

From: "Aloysius A. Wild III" <aaw@rincewind.tv>
To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, aaw@rincewind.tv,
   gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org
Cc:  
Subject: Re: c++/4861
Date: Mon, 12 Nov 2001 14:30:58 -0800

 This is a multi-part message in MIME format.
 --------------070207030005010402050701
 Content-Type: text/plain; charset=us-ascii; format=flowed
 Content-Transfer-Encoding: 7bit
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=4861&database=gcc
 
 I've attached an un-preprocessed source file.  Note that this problem 
 exists in both 3.0.2 and the current 3.1 snapshot.
 
 Ollie
 
 --------------070207030005010402050701
 Content-Type: text/plain;
  name="gcc-bug.cpp"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="gcc-bug.cpp"
 
 #include <iostream>
 
 template<class C> class B {
     public:
         ~B()
         {
             std::cerr << "Running B::~B()" << std::endl;
             f();
         }
 
         virtual void f()
         {
             std::cerr << "Running B::f()" << std::endl;
         }
 };
 
 class D : public B<int> {
     public:
         ~D()
         {
             std::cerr << "Running D::~D()" << std::endl;
             f();
         }
 
         virtual void f()
         {
             std::cerr << "Running D::f()" << std::endl;
         }
 };
 
 int main(int argc, char **argv)
 {
     D d;
 
     return 0;
 }
 
 --------------070207030005010402050701--
 


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