This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/7294: ICE with templates
- From: bangerth at dealii dot org
- To: gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, nobody at gcc dot gnu dot org, vincent dot lascaux at ifrance dot com
- Date: 23 Jan 2003 03:24:49 -0000
- Subject: Re: c++/7294: ICE with templates
- Reply-to: bangerth at dealii dot org, gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, nobody at gcc dot gnu dot org, vincent dot lascaux at ifrance dot com, gcc-gnats at gcc dot gnu dot org
Old Synopsis: GCC 3.1 problem with templates
New Synopsis: ICE with templates
State-Changed-From-To: analyzed->closed
State-Changed-By: bangerth
State-Changed-When: Thu Jan 23 03:24:49 2003
State-Changed-Why:
Finally fixed with the new parser. This is a reduced testcase
that ICEd older versions of gcc
--------------------------------
template<template<class> class C>
struct X {
typedef int i;
C<int> Foo;
};
template<class> struct O {
template<class> struct I {};
typename X<I>::i i;
};
int main() {}
--------------------------
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7294