This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/41570] [4.5 Regression] [c++0x] ICE with -g and variadic templates



------- Comment #1 from ciaran dot mccreesh at googlemail dot com  2009-10-04 22:55 -------
This was introduced in svn://gcc.gnu.org/svn/gcc/trunk@152043 for bug 41266.
The DECL_NAME (parm_pack) assertion doesn't hold if the pack's empty.

This leads to a much simpler test case:

template <typename...>
struct M
{
};

struct R :
    M<>
{
};


-- 

ciaran dot mccreesh at googlemail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dodji at gcc dot gnu dot org


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]