public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/6749: ...
@ 2003-01-23  3:46 Nathanael Nerode
  0 siblings, 0 replies; only message in thread
From: Nathanael Nerode @ 2003-01-23  3:46 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: Nathanael Nerode <neroden@twcny.rr.com>
To: gcc-gnats@gcc.gnu.org, rullo.pat@tiscalinet.it, gcc-bugs@gcc.gnu.org,
   nobody@gcc.gnu.org
Cc:  
Subject: Re: c++/6749: ...
Date: Wed, 22 Jan 2003 22:40:53 -0500

 I've cut the testcase down to the following:
 
 template <class T> class inner {
 public:
     inner<T>() { }
 };
 
 template <class T> class parent {
 public:
   virtual parent<inner<T> >* f() ;
 };
 
 
 template <class T> class child: public parent<T> {
 public:
   parent<inner<T> >* f()
   {  return new child<inner<T> >; }
 };
 
 int main()
 {
     parent<int> x ;
     child<int> y ;
 
     return 0;
 }
 
 I'm having trouble with my GCC build, so I haven't tested it on a current 
 version yet.


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

only message in thread, other threads:[~2003-01-23  3:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-23  3:46 c++/6749: Nathanael Nerode

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