This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/28051] [4.0/4.1/4.2 regression] ICE on invalid conversion operator



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]