public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/58743] New: [C++11] parameter packs not expanded with '...'
@ 2013-10-16  3:54 ghartshaw at gmail dot com
  2013-10-16  8:55 ` [Bug c++/58743] " paolo.carlini at oracle dot com
  2013-10-16 21:39 ` paolo.carlini at oracle dot com
  0 siblings, 2 replies; 3+ messages in thread
From: ghartshaw at gmail dot com @ 2013-10-16  3:54 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58743

            Bug ID: 58743
           Summary: [C++11] parameter packs not expanded with '...'
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ghartshaw at gmail dot com

Created attachment 31015
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31015&action=edit
Compiliation error messages.

The following test case gives an "parameter packs not expanded with '...'"
error where it should not:

$ cat error_example.cpp
struct tensor {
    constexpr tensor( int value ) : _value( value ) {}
    template <int... Indices> constexpr int value() const { return _value; }
private:
    int _value;
};

template <typename T> struct printer {
    static int get( T const & tensor ) { return detail<>::get( tensor ); }
private:
    template <int... Indices> struct detail {
        static int get( T const & tensor ) { return tensor.value<Indices...>();
}
    };
};

int main() {
    printer<tensor>::get( tensor<int>(1) );
}
$ g++-4.9 --version
g++-4.9 (GCC) 4.9.0 20131015 (experimental)
$ g++-4.9 -std=c++11 -Wall -Wextra error_example.cpp -save-temps -v
2>output.txt


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-10-16 21:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-16  3:54 [Bug c++/58743] New: [C++11] parameter packs not expanded with '...' ghartshaw at gmail dot com
2013-10-16  8:55 ` [Bug c++/58743] " paolo.carlini at oracle dot com
2013-10-16 21:39 ` paolo.carlini at oracle dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).