public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/4861
@ 2001-11-01 15:48 Aloysius A. Wild III
  0 siblings, 0 replies; only message in thread
From: Aloysius A. Wild III @ 2001-11-01 15:48 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-11-12 22:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-01 15:48 c++/4861 Aloysius A. Wild III

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