public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/42514]  New: Invalid Destructor Name of A Template Class Is Accepted
@ 2009-12-27  7:45 shreks2099 at yahoo dot com
  2009-12-27 10:09 ` [Bug c++/42514] [4.3/4.4/4.5 Regression] " paolo dot carlini at oracle dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: shreks2099 at yahoo dot com @ 2009-12-27  7:45 UTC (permalink / raw)
  To: gcc-bugs

Obviously the following code of the definition of class destructor is wrong,
but it passed g++ 4.4.2 in Fedora 12. However g++ 4.1.2 and g++ 3.4.6 in Fedora
12 reported the error.

The testing code is list below:

#include <iostream>

template <typename T>
class Base
{
  public:
        Base();
        ~Base();
};

template <typename T>
Base<T>::Base()
{
        std::cout << "Base()" << std::endl;
}

template <typename T>
Base<T>::~BaseTypo()
{
        std::cout << "~BaseTypo()" << std::endl;
}

int main()
{
        Base<int>* pObj = new Base<int> ();
        delete pObj;
        return 0;
}


-- 
           Summary: Invalid Destructor Name of A Template Class Is Accepted
           Product: gcc
           Version: 4.4.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: shreks2099 at yahoo dot com


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


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-12-30 19:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-27  7:45 [Bug c++/42514] New: Invalid Destructor Name of A Template Class Is Accepted shreks2099 at yahoo dot com
2009-12-27 10:09 ` [Bug c++/42514] [4.3/4.4/4.5 Regression] " paolo dot carlini at oracle dot com
2009-12-27 19:36 ` hjl dot tools at gmail dot com
2009-12-30 19:35 ` [Bug c++/42514] [4.3/4.4 " jason at gcc dot gnu dot org

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