This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/34753] [4.3 regression] ICE with invalid template parameter in variadic template
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 12 Jan 2008 18:23:17 -0000
- Subject: [Bug c++/34753] [4.3 regression] ICE with invalid template parameter in variadic template
- References: <bug-34753-1771@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from reichelt at gcc dot gnu dot org 2008-01-12 18:23 -------
Here's a similar testcase with a function instead of a nested class
that also segfaults:
================================================================
template<typename... T> struct A
{
template<T> A();
};
A<int> a;
================================================================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34753