https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88699
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|ice-on-invalid-code |
Priority|P3 |P1
--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase:
template <typename>
struct A {
void operator= (int);
template <int> class B;
};
template <typename C>
template <int>
struct A<C>::B : A {
using A::operator=;
void operator= (B);
};