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]

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



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