cxx/test/containers/associative/multimap/multimap.cons/compare.pass.cpp
2010-05-11 21:36:01 +00:00

29 lines
684 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <map>
// class multimap
// explicit multimap(const key_compare& comp);
#include <map>
#include <cassert>
#include "../../../test_compare.h"
int main()
{
typedef test_compare<std::less<int> > C;
std::multimap<int, double, C> m(C(3));
assert(m.empty());
assert(m.begin() == m.end());
assert(m.key_comp() == C(3));
}