This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
C++ compiler bug
- To: egcs-bugs at egcs dot cygnus dot com
- Subject: C++ compiler bug
- From: Yedema <yedema at natlab dot research dot philips dot com>
- Date: 27 May 1999 15:21:25 +0200
gcc version egcs-2.91.66 19990314 (egcs-1.1.2 release)
on SunOS ist11 5.6 Generic_105181-11 sun4u sparc SUNW,Ultra-Enterprise
g++ -c bug.cc
bug.cc:10: Internal compiler error 980711.
bug.cc:
------8<------
namespace X {
class B {
public:
int nothing_special;
};
};
class A {
X::C<X::B> c;
};
------8<------