This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/15554] [3.4/3.5 Regression] ICE in tsubst_copy, at cp/pt.c:7433
- From: "hzoli at austin dot ibm dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Jun 2004 16:55:28 -0000
- Subject: [Bug c++/15554] [3.4/3.5 Regression] ICE in tsubst_copy, at cp/pt.c:7433
- References: <20040520165453.15554.hzoli@austin.ibm.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From hzoli at austin dot ibm dot com 2004-06-08 16:55 -------
(In reply to comment #7)
> template <int n> struct T2 { enum { N = n, N1 = T1<N>::N }; };
It seems it does not like incomplete enums, since this works:
template <int n> struct T2
{ enum { N = n }; enum { N1 = T1<N>::N }; };
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15554