This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/15554] [3.4/3.5 Regression] ICE in tsubst_copy, at cp/pt.c:7433


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]