This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/11551] [3.4 regression] g++ accepts typedef as destructor name
- From: "jason at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Jul 2003 22:20:54 -0000
- Subject: [Bug c++/11551] [3.4 regression] g++ accepts typedef as destructor name
- References: <20030716221830.11551.jason@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11551
jason at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2003-07-16 22:20:53
date| |
Summary|[3.4 regression] g++ accepts|[3.4 regression] g++ accepts
|specialization typedef as |typedef as destructor name
|destructor name |
------- Additional Comments From jason at gcc dot gnu dot org 2003-07-16 22:20 -------
Actually, the bug doesn't seem to be template-related. A simpler testcase:
struct A {
typedef A A2;
~A2();
};