This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/3869: Segmentation fault on specialized outer template withinner member template.
- From: Paolo Carlini <pcarlini at unitus dot it>
- To: jhl at sssonline dot com, gcc-gnats at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, fluxsmith at fluxsmith dot com, gcc-bugs at gcc dot gnu dot org, nobody at gcc dot gnu dot org
- Date: Thu, 02 Jan 2003 22:21:48 +0100
- Subject: Re: c++/3869: Segmentation fault on specialized outer template withinner member template.
With current 3.4 no segmentation fault, but instead:
3869.cc:14: error: expected unqualified-id
3869.cc:17: error: expected init-declarator
3869.cc:17: error: expected `,' or `;'
If the illegal testcase is changed from:
typedef typename Outer<flag>::Inner<int>::Result Result;
to
typedef typename Outer<flag>::template Inner<int>::Result Result;
It is compiled just fine with 3.2, 3.3 and mainline.
It seems to me that the PR can be closed.
Paolo.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=3869