https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106310
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: template <class T> struct set{}; template< typename T > struct Base { template< int > int set(T const &) { } }; template< typename T > struct Derived : Base< T > { void f(T const &arg) { this->template set< 0 >(arg); } };