blob: 30f78936ff92b47baa7a8f6c5e842e2e384d95f7 [file] [log] [blame]
Eric Fiselier2960ae22016-02-11 11:59:44 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <unordered_map>
11
12// class unordered_multimap
13
14// insert(...)
15
16// UNSUPPORTED: c++98, c++03
17
18#include <unordered_map>
Eric Fiselier2960ae22016-02-11 11:59:44 +000019
Eric Fiselier2960ae22016-02-11 11:59:44 +000020#include "container_test_types.h"
Eric Fiselier83c9dc12016-04-15 23:27:27 +000021#include "../../../map_allocator_requirement_test_templates.h"
Eric Fiselier2960ae22016-02-11 11:59:44 +000022
23int main()
24{
Eric Fiselier83c9dc12016-04-15 23:27:27 +000025 testMultimapInsert<TCT::unordered_multimap<> >();
Eric Fiselier91a15652016-04-18 01:40:45 +000026 testMultimapInsertHint<TCT::unordered_multimap<> >();
Eric Fiselier2960ae22016-02-11 11:59:44 +000027}