You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template<typename T> concept X = true;
template<> voidf(X auto x);
... treating the second line as the declaration of a function template. But 'template<>' always means an explicit specialization is being declared. We should diagnose the 'template<>' in this case and suggest that it be removed.