blob: ad7bc043a5b322522bf28a815f98577a2e321c61 [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_set>
11
12// class unordered_multiset
13
14// insert(...)
15
16// UNSUPPORTED: c++98, c++03
17
18#include <unordered_set>
Eric Fiselier2960ae22016-02-11 11:59:44 +000019#include "container_test_types.h"
Eric Fiselier83c9dc12016-04-15 23:27:27 +000020#include "../../set_allocator_requirement_test_templates.h"
Eric Fiselier2960ae22016-02-11 11:59:44 +000021
22int main()
23{
Eric Fiselier83c9dc12016-04-15 23:27:27 +000024 testMultisetInsert<TCT::unordered_multiset<> >();
Eric Fiselier2960ae22016-02-11 11:59:44 +000025}