This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
c++/4905: unspecified internal compiler error
- From: theverylittleone at hotmail dot com
- To: gcc-gnats at gcc dot gnu dot org
- Date: 19 Nov 2001 20:30:25 -0000
- Subject: c++/4905: unspecified internal compiler error
- Reply-to: theverylittleone at hotmail dot com
[Get raw message]
>Number: 4905
>Category: c++
>Synopsis: unspecified internal compiler error
>Confidential: no
>Severity: serious
>Priority: high
>Responsible: unassigned
>State: open
>Class: rejects-legal
>Submitter-Id: net
>Arrival-Date: Mon Nov 19 12:36:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator: Dan Marinescu
>Release: 2.95.3-6
>Organization:
>Environment:
irrelevant
>Description:
template <class T>
struct A
{
template <class U>
struct B
{
template <class V>
struct C
{
void foo();
};
};
};
template <class T> template <class U> template <class V>
void A<T>::template B<U>::template C<V>::foo(void)
{
}
int main()
{
A<int>::template B<char>::template C<float> c;
c.foo();
}
This reports an unspecified "internal compiler error"
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted: