This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/28051] [4.0/4.1/4.2 regression] ICE on invalid conversion operator
- From: "reichelt 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 Jun 2006 08:28:01 -0000
- Subject: [Bug c++/28051] [4.0/4.1/4.2 regression] ICE on invalid conversion operator
- References: <bug-28051-1771@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from reichelt at gcc dot gnu dot org 2006-06-16 08:28 -------
With Mark's patch for PR 27665 the testcase is now correclty rejected,
but we still ICE with the following one:
=========================================================
template<int> struct A {};
template<int N> struct B : A<N>
{
using A<N>::operator typename A<N>::X;
};
B<0> b;
=========================================================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28051