blob: 225bf67bb1f6ef90843cd9ddb9ffef6fde8e4f72 [file] [log] [blame]
Eric Fiselierdb215062016-03-31 02:15:15 +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// <map>
11
12// class multimap
13
14// insert(...)
15
16// UNSUPPORTED: c++98, c++03
17
18#include <map>
Eric Fiselierdb215062016-03-31 02:15:15 +000019
Eric Fiselierdb215062016-03-31 02:15:15 +000020#include "container_test_types.h"
Eric Fiselier83c9dc12016-04-15 23:27:27 +000021#include "../../../map_allocator_requirement_test_templates.h"
Eric Fiselierdb215062016-03-31 02:15:15 +000022
23
24int main()
25{
Eric Fiselier83c9dc12016-04-15 23:27:27 +000026 testMultimapInsert<TCT::multimap<> >();
Eric Fiselier91a15652016-04-18 01:40:45 +000027 testMultimapInsertHint<TCT::multimap<> >();
Eric Fiselierdb215062016-03-31 02:15:15 +000028}