Title
Explicitly-specified partial argument list with multiple parameter packs
Status
nad
Section
13.10.2 [temp.arg.explicit]
Submitter
James Widman

Created on 2011-09-01.00:00:00 last changed 133 months ago

Messages

Date: 2013-04-15.00:00:00

Rationale (April, 2013):

This is well-formed.

Date: 2022-11-20.07:54:16

Given

    template<class T, class U> struct A { };
    template<class... T, class ... U> void f( A<T,U>...p);

    void g() {
        f<int>(
            A<int,unsigned>(),
            A<short,unsigned short>()
            );
    }

I would expect this to work, but all the recent compilers I tried reject it, indicating deduction failure.

History
Date User Action Args
2013-05-03 00:00:00adminsetmessages: + msg4443
2013-05-03 00:00:00adminsetstatus: open -> nad
2011-09-01 00:00:00admincreate