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]

constructor declaration namings


Script started on Wed Jan 26 10:08:35 2000
> cat -n cvn.cpp
     1	
     2	#include <iostream.h>
     3	
     4	class x 
     5	{
     6	 public: 
     7	  x ( int ye);
     8	
     9	 private:
    10	  int _j; 
    11	};
    12	
    13	class x::x(int y) { _j = y; }
    14	
    15	void main {}
    16	
> g++ cvn.cpp
cvn.cpp:13: Internal compiler error.
cvn.cpp:13: Please submit a full bug report.
cvn.cpp:13: See
<URL:http://www.gnu.org/software/gcc/faq.html#bugreport>
for instructions.
> exit
exit

script done on Wed Jan 26 10:08:46 2000

__________________________________________________
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com

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