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]

compiler error 109


Hey-o Folks,

I get this in bug2.cc  (attached, the code isn't ansi compliant).

% g++ -ot bug2.cc
bug2.cc:6: Internal compiler error 109.
bug2.cc:6: Please submit a full bug report to `egcs-bugs@cygnus.com'.
% g++ -v
Reading specs from
D:\cygnus\CYGWIN~1\H-I586~1\bin\..\lib\gcc-lib\i586-cygwin32\egcs-2.91.57\specs

gcc version egcs-2.91.57 19980901 (egcs-1.1 release)
# using cygwin-b20

Later.

--
Paul Webster 5E31 paulweb@nortelnetworks.com - My opinions are my own :-) -
I'm not a vegetarian because I love animals; I'm a vegetarian because
I hate vegetables. - A. Whitney Brown


#include <iostream>
#include <string>

class B {
public:
  static const string cs = "constant string";
  string id;
};

const string B::cs;

int main ()
{
  return 0;
}

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