From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31524 invoked by alias); 4 Nov 2002 22:56: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 31489 invoked by uid 71); 4 Nov 2002 22:56:00 -0000 Resent-Date: 4 Nov 2002 22:56:00 -0000 Resent-Message-ID: <20021104225600.31488.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, jesteves@criticalsoftware.com Received: (qmail 26560 invoked by uid 61); 4 Nov 2002 22:53:20 -0000 Message-Id: <20021104225320.26559.qmail@sources.redhat.com> Date: Mon, 04 Nov 2002 14:56:00 -0000 From: jesteves@criticalsoftware.com Reply-To: jesteves@criticalsoftware.com To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: gnatsweb-2.9.3 (1.1.1.1.2.31) Subject: c++/8454: G++ 2.95 gives an ICE while compiling the copy constructor of template class CTTT(see attach) X-SW-Source: 2002-11/txt/msg00185.txt.bz2 List-Id: >Number: 8454 >Category: c++ >Synopsis: G++ 2.95 gives an ICE while compiling the copy constructor of template class CTTT(see attach) >Confidential: no >Severity: serious >Priority: medium >Responsible: unassigned >State: open >Class: ice-on-legal-code >Submitter-Id: net >Arrival-Date: Mon Nov 04 14:56:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: João Esteves >Release: gcc version 2.95.2 19991024 (release) >Organization: >Environment: FreeBSD 4.1-RELEASE on i386 >Description: bash-2.04$ g++ -o t template.cpp template.cpp: In method `CTTT::CTTT(const CTTT &)': template.cpp:31: Internal compiler error. template.cpp:31: Please submit a full bug report. template.cpp:31: See for instructions. >How-To-Repeat: // // A template class with a single template parameter // template class CT { public: CT(void) {} CT(const CT& rc_other) {} virtual ~CT(void) {} }; // // A template class with two template parameters. // The first template parameter is a template class itself with one // template parameter. // template