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++/6289: partial template specialization and friend


Hi,

the testcase can be reduced even further to the following code snippet
which still crashes gcc 3.1 as of 20020506.

---------------------------snip here--------------------------
struct A
{
    typedef int type;
};

template <typename T>
class B
{
    typedef A::type X;
    friend class X;
};
---------------------------snip here--------------------------

Greetings,
Volker Reichelt

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=6289



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