From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16506 invoked by alias); 14 Apr 2003 04:16:01 -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 16491 invoked by uid 71); 14 Apr 2003 04:16:01 -0000 Date: Mon, 14 Apr 2003 04:16:00 -0000 Message-ID: <20030414041601.16490.qmail@sources.redhat.com> To: gdr@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Giovanni Bajo" Subject: Re: c++/3361: [2003-01-02] g++: Internal error: Segmentation Fault (program cc1plus) Reply-To: "Giovanni Bajo" X-SW-Source: 2003-04/txt/msg00594.txt.bz2 List-Id: The following reply was made to PR c++/3361; it has been noted by GNATS. From: "Giovanni Bajo" To: , , , , , , Cc: "Wolfgang Bangerth" Subject: Re: c++/3361: [2003-01-02] g++: Internal error: Segmentation Fault (program cc1plus) Date: Mon, 14 Apr 2003 06:11:11 +0200 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&p r=3361 Reduced code is: --------------------------- namespace A {}; namespace B { using namespace A; } namespace A { using namespace B; } int main() { using namespace A; } --------------------------- pr3361.cpp: In function `int main()': pr3361.cpp:14: internal error: Segmentation fault Regression on the 3.2 branch with respect with 2.95, but fixed on 3.3 and mainline (3.4). I'm _sure_ it's a duplicate, but I couldn't find the other PR. Anyway, I guess it's should be closed. Giovanni Bajo