This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/5931: ICE when using template class that is child if another template class
- From: Reichelt <reichelt at igpm dot rwth-aachen dot de>
- To: gcc-gnats at gcc dot gnu dot org, f_ker at yahoo dot co dot uk, gcc-bugs at gcc dot gnu dot org, nobody at gcc dot gnu dot org
- Date: Wed, 13 Mar 2002 14:32:42 +0100
- Subject: Re: c++/5931: ICE when using template class that is child if another template class
Hi,
the whole problem boils down to the following code snippet:
------------------------snip here------------------------
template <typename T, typename U> struct A
{
template <typename V> class SubA {};
};
template <typename T> struct B : public A<T,int>::SubA<int> {};
B<int> b;
------------------------snip here------------------------
Compiling it with "g++ -c" (2.95.3, 3.0.x and 3.1 20020311)
on mips-sgi-irix6.5 or i686-pc-linux-gnu I get
bug.cpp: In instantiation of `B<int>':
bug.cpp:8: instantiated from here
bug.cpp:6: Internal error: Segmentation fault
Please submit a full bug report, [etc.]
Greetings,
Volker Reichelt
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=5931