This is the mail archive of the gcc-prs@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++/8061: ICE


The following reply was made to PR c++/8061; it has been noted by GNATS.

From: Reichelt <reichelt@igpm.rwth-aachen.de>
To: gcc-gnats@gcc.gnu.org, gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org,
        dave@boost-consulting.com
Cc:  
Subject: Re: c++/8061: ICE
Date: Fri, 4 Oct 2002 22:36:03 +0200

 Hi,
 
 the bug can be reproduced with the following legal code snippet:
 
 -------------------------------snip here------------------------
 struct A
 {
     template <typename T> struct B {};
 };
 
 template <typename T> struct C
 {
     typedef A::template B<void> Type;
 };
 -------------------------------snip here------------------------
 
 Compiling this with gcc 2.95.x, 3.0.x, 3.1, 3.2 (just use g++ -c) and
 the main trunk will result in an ICE (checked on i686-pc-linux-gnu
 and mips-sgi-irix6.5).
 
 The example can be further reduced to following code snippet which is
 illegal code, however:
 
 -------------------------------snip here------------------------
 struct A
 {
     template <typename T> struct B {};
 };
 
 typedef A::template B<void> Type;
 -------------------------------snip here------------------------
 
 Greetings,
 Volker Reichelt
 
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=8061
 
 


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