This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/18512] [3.4/4.0 Regression] ICE on overriden template method
- From: "pinskia 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 Nov 2004 02:21:20 -0000
- Subject: [Bug c++/18512] [3.4/4.0 Regression] ICE on overriden template method
- References: <20041116021313.18512.Tringi@Mx-3.cz>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-16 02:21 -------
Confirmed.
: Search converges between 2003-07-08-trunk (#288) and 2003-07-09-trunk (#289).
reduced testcase:
template <typename T> struct property {
};
struct iii : public property<int> {
const int get_callback() const {
return this->property<int>;
};
};
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |ice-on-valid-code
Last reconfirmed|0000-00-00 00:00:00 |2004-11-16 02:21:16
date| |
Summary|ICE on overriden template |[3.4/4.0 Regression] ICE on
|method |overriden template method
Target Milestone|--- |3.4.4
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18512