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