From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32183 invoked by alias); 8 Jun 2004 16:55:28 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 32166 invoked by uid 48); 8 Jun 2004 16:55:28 -0000 Date: Tue, 08 Jun 2004 16:55:00 -0000 Message-ID: <20040608165528.32165.qmail@sourceware.org> From: "hzoli at austin dot ibm dot com" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040520165453.15554.hzoli@austin.ibm.com> References: <20040520165453.15554.hzoli@austin.ibm.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/15554] [3.4/3.5 Regression] ICE in tsubst_copy, at cp/pt.c:7433 X-Bugzilla-Reason: CC X-SW-Source: 2004-06/txt/msg00941.txt.bz2 List-Id: ------- Additional Comments From hzoli at austin dot ibm dot com 2004-06-08 16:55 ------- (In reply to comment #7) > template struct T2 { enum { N = n, N1 = T1::N }; }; It seems it does not like incomplete enums, since this works: template struct T2 { enum { N = n }; enum { N1 = T1::N }; }; -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15554