Title
Allowing template parameters following template parameter packs that are pack expansions
Status
open
Section
13.2 [temp.param]
Submitter
Jan Schultke

Created on 2025-01-20.00:00:00 last changed 1 month ago

Messages

Date: 2025-02-23.22:19:05

Suggested resolution:

Change in 13.2 [temp.param] paragraph 14 as follows:

... If a A template-parameter pack of a function template declares a template parameter pack, it shall not be followed by another template-parameter P unless
  • that template parameter P is deducible from the parameter-type-list (9.3.4.6 [dcl.fct]) of the function template or ,
  • P has a default argument (13.10.3 [temp.deduct]), or
  • that template parameter pack is also a pack expansion.
...
Date: 2025-01-20.00:00:00

(From submission #666.)

Consider:

  template <class Head, class... Tail>
  struct test {
    template <Tail..., Head>
    static void make() {}       // clang accepts, MSVC rejects
  };

  int main() {
    test<char, int, float>::make<4, 6.f, 'a'>();
  }

There is implementation divergence for the treatment of this example. It ought to be allowed.

History
Date User Action Args
2025-02-23 22:19:05adminsetmessages: + msg7967
2025-01-20 00:00:00admincreate