This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Internal compiler error 61
- To: Nick Rasmussen <nick at jive dot org>
- Subject: Re: Internal compiler error 61
- From: Alexandre Oliva <oliva at dcc dot unicamp dot br>
- Date: 05 Jul 1999 12:55:26 -0300
- Cc: egcs-bugs at egcs dot cygnus dot com, egcs-patches at egcs dot cygnus dot com
- References: <199907051254.HAA17956@athena.jive.org>
On Jul 5, 1999, Nick Rasmussen <nick@jive.org> wrote:
> The following code causes an internal compiler error (61) with the
> current head of the gcc-2.95 branch.
Thanks, I'm installing the two attached tests, based on your bug
report, in the testsuite.
--
Alexandre Oliva http://www.dcc.unicamp.br/~oliva IC-Unicamp, Bra[sz]il
{oliva,Alexandre.Oliva}@dcc.unicamp.br aoliva@{acm.org,computer.org}
oliva@{gnu.org,kaffe.org,{egcs,sourceware}.cygnus.com,samba.org}
*** E-mail about software projects will be forwarded to mailing lists
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Nick Rasmussen <nick@jive.org>
// crash test - XFAIL *-*-*
template <class T> struct foo;
template <class T> struct bar {
typedef int foo;
};
template <class T> struct baz {
typedef bar<T>::foo foo; // ERROR - missing typename
void m(foo);
};
// Build don't link:
// Special g++ Options:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Nick Rasmussen <nick@jive.org>
// This is slightly different from typename1.C. This one tests
// whether the implicit typename extension works. gcc 2.95 reports:
// warning: lookup of `foo' finds `struct foo'
// warning: instead of `baz<T>::foo' from dependent base class
// warning: (use `typename baz::foo' if that's what you meant)
// But baz<T>::foo is not a base class, and `foo' should have been
// found in baz's scope.
struct foo;
template <class T> struct bar {
typedef int foo;
};
template <class T> struct baz {
typedef bar<T>::foo foo; // ERROR - implicit typename - XFAIL *-*-*
void m(foo); // gets bogus error - dependent base class - XFAIL *-*-*
};