Created on 2025-01-20.00:00:00 last changed 1 month ago
Suggested resolution:
Change in 13.2 [temp.param] paragraph 14 as follows:
...If aA template-parameter pack of a function templatedeclares a template parameter pack, itshall not be followed by another template-parameter P unless...
that template parameterP is deducible from the parameter-type-list (9.3.4.6 [dcl.fct]) of the function templateor,- P has a default argument (13.10.3 [temp.deduct]), or
- that template parameter pack is also a pack expansion.
(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:05 | admin | set | messages: + msg7967 |
2025-01-20 00:00:00 | admin | create |