This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/10926] ICE in build_delete when trying to declare template destructor
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 15 Jul 2003 15:13:33 -0000
- Subject: [Bug c++/10926] ICE in build_delete when trying to declare template destructor
- References: <20030522070743.10926.xueweizhong@mail.zte.com.cn>
- 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=10926
pinskia at physics dot uc dot edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed|2003-07-01 00:20:46 |2003-07-15 15:13:33
date| |
------- Additional Comments From pinskia at physics dot uc dot edu 2003-07-15 15:13 -------
Smaller testcase:
struct Foo
{
template <int i>
~Foo() {}
};
Foo f;