//
// error.cpp:
// A bad call to the insert() method
// of a multimap...
// ...and the fun begins!
//
#include <map>
#include <string>
int main()
{
using namespace std;
multimap<string, int> mm;
mm.insert(0);
return 0;
}
End of Listing