summaryrefslogtreecommitdiff
path: root/test/std/containers/unord/unord.set/insert_and_emplace_allocator_requirements.pass.cpp
blob: e85e94538e7415f2c814e4e2ba2a215aa052a364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <unordered_set>

// class unordered_set

// insert(...)
// emplace(...)

// UNSUPPORTED: c++98, c++03

#include <unordered_set>

#include "container_test_types.h"
#include "../../set_allocator_requirement_test_templates.h"


int main()
{
  testSetInsert<TCT::unordered_set<> >();
  testSetEmplace<TCT::unordered_set<> >();
}