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