1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9// <unordered_set>
10
11// class unordered_multiset
12
13// insert(...)
14
15// UNSUPPORTED: c++03
16
17#include <unordered_set>
18#include "test_macros.h"
19#include "container_test_types.h"
20#include "../../set_allocator_requirement_test_templates.h"
21
22int main(int, char**)
23{
24 testMultisetInsert<TCT::unordered_multiset<> >();
25 testMultisetEmplace<TCT::unordered_multiset<> >();
26
27 return 0;
28}
29

source code of libcxx/test/std/containers/unord/unord.multiset/insert_emplace_allocator_requirements.pass.cpp