From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32008 invoked by alias); 19 Feb 2002 03:56:07 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 31952 invoked by uid 71); 19 Feb 2002 03:56:04 -0000 Date: Mon, 18 Feb 2002 19:56:00 -0000 Message-ID: <20020219035603.31945.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Craig Rodrigues Subject: Re: c++/5402: ICE in pop_binding Reply-To: Craig Rodrigues X-SW-Source: 2002-02/txt/msg00462.txt.bz2 List-Id: The following reply was made to PR c++/5402; it has been noted by GNATS. From: Craig Rodrigues To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, jakub@redhat.com, rodrigc@gcc.gnu.org, gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org Cc: Subject: Re: c++/5402: ICE in pop_binding Date: Mon, 18 Feb 2002 22:48:34 -0500 The following testcase submitted in PR 5573 is similar to this PR. struct A { class AN { }; }; struct B { typedef int AN; }; struct C : A { struct CN : public B { }; class AN { }; };