Title
Function template redeclaration via alias template
Status
dup
Section
13.7.7.2 [temp.over.link]
Submitter
Richard Smith

Created on 2014-10-15.00:00:00 last changed 114 months ago

Messages

Date: 2014-11-15.00:00:00

Rationale (November, 2014):

This issue is a duplicate of issue 1980.

Date: 2022-11-20.07:54:16

See also issue 2025.

Given the declarations

   template<int> using T = int;
   template<typename U> void h(T<f(U())>);
   template<typename U> void h(T<g(U())>);

Does this declare one function template or two?

History
Date User Action Args
2014-11-24 00:00:00adminsetmessages: + msg5302
2014-10-15 00:00:00admincreate