This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
bug report
- To: gcc-bugs at gcc dot gnu dot org
- Subject: bug report
- From: Anders Linden <anders dot linden at perceptive dot se>
- Date: Thu, 03 Aug 2000 11:33:20 +0200
This program:
#include <iostream.h>
#include <map.h>
namespace apa
{
#ifndef __STL_LIMITED_DEFAULT_TEMPLATES
template <class Key, class T, class Compare = less<Key>, class Alloc =
alloc>
#else
template <class Key, class T, class Compare, class Alloc = alloc>
#endif
class map: public std::map
{
}
}
using namespace apa
map<int,int>nisse;
int main()
{
nisse n;
}
generated the following error:
maptest.cpp:12: Internal compiler error.
maptest.cpp:12: Please submit a full bug report.
maptest.cpp:12: See
<URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for instructions.