public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/50108] New: [C++0x] Variadic templates with both type and non-type parameters
@ 2011-08-17 14:38 edward.schere@trash-mail.com
  2011-08-17 15:27 ` [Bug c++/50108] " redi at gcc dot gnu.org
  2011-09-23 11:28 ` paolo.carlini at oracle dot com
  0 siblings, 2 replies; 3+ messages in thread
From: edward.schere@trash-mail.com @ 2011-08-17 14:38 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50108
           Summary: [C++0x] Variadic templates with both type and non-type
                    parameters
    Classification: Unclassified
           Product: gcc
           Version: 4.6.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: edward.schere@trash-mail.com


I'm not quite sure if this is a GCC bug, because the current C++ draft version
is unclear about this. I found neither an example that this code is ill-formed,
nor did I found an example that it's ok:


template<int... Ints, typename... Types>
class test_template
{
};

int main()
{
    test_template<1,2,3,int,double> tt;
    return 0;
}


GCC 4.6.1 rejects this code with the error "parameter pack 'Ints' must be at
the end of the template parameter list".

I guess the code is well-formed, because it is unambiguous and (semantically)
identical with the following code (that works fine in GCC):


template<int Int0, typename... Types>
class test_template
{
};

template<int Int0, int Int1, typename... Types>
class test_template
{
};

template<int Int0, int Int1, int Int2, typename... Types>
class test_template
{
};


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

end of thread, other threads:[~2011-09-23 11:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-17 14:38 [Bug c++/50108] New: [C++0x] Variadic templates with both type and non-type parameters edward.schere@trash-mail.com
2011-08-17 15:27 ` [Bug c++/50108] " redi at gcc dot gnu.org
2011-09-23 11:28 ` 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).