Title
Pack expansions in using-declarations
Status
c++17
Section
13.7.4 [temp.variadic]
Submitter
Daniel Krügler

Created on 2011-09-10.00:00:00 last changed 24 months ago

Messages

Date: 2012-02-15.00:00:00

Rationale (February, 2012):

This is not a defect but a request for an extension and thus more appropriately addressed by EWG.

Date: 2016-11-15.00:00:00

[Accepted at the November, 2016 meeting as part of paper P0195R2.]

It would be handy if a pack expansion could appear in a using-declaration:

    template <class... Mixins>
    class X : Mixins... {
      using Mixins::foo ...; // Currently not supported
    };
History
Date User Action Args
2022-04-28 06:34:18adminsetstatus: extension -> c++17
2012-02-27 00:00:00adminsetmessages: + msg3868
2012-02-27 00:00:00adminsetstatus: open -> extension
2011-09-10 00:00:00admincreate