This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Internal compiler error 383.
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Internal compiler error 383.
- From: Marco Soeima <msoeima at netcabo dot pt>
- Date: Mon, 29 May 2000 08:59:46 +0100
Here is the code used:
--
#include <iostream>
class Fun {
public:
void disp(char const *const something) { cout << (something) << endl; }
};
using Fun::disp;
int
main(void)
{
disp("Hello World!");
return 0;
}
--
Compiler: egcs-2.91.66 (Red Hat Linux 6.2)
Compiler options: g++ -g -Wall -ansi -pedantic fun.cpp -o fun
I hope this helps.
--
Marco Soeima