This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Erroneous use of stl creates internal compiler error...
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Erroneous use of stl creates internal compiler error...
- From: Fredrik Öhrström <d92-foh at nada dot kth dot se>
- Date: Wed, 29 Sep 1999 13:56:06 +0200 (MET DST)
Erroneous code generates an internal compiler error.....
Compiled with g++ 2.95.1 on Linux Redhat 6.0 i586.
#include<map>
struct A
{
};
int main ()
{
A a;
a.map ();
}
Regards
Fredrik Öhrström