blob: e85e94538e7415f2c814e4e2ba2a215aa052a364 [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_set
13
14// insert(...)
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +000015// emplace(...)
Eric Fiselier2960ae22016-02-11 11:59:44 +000016
17// UNSUPPORTED: c++98, c++03
18
19#include <unordered_set>
Eric Fiselier2960ae22016-02-11 11:59:44 +000020
Eric Fiselier2960ae22016-02-11 11:59:44 +000021#include "container_test_types.h"
Eric Fiselier83c9dc12016-04-15 23:27:27 +000022#include "../../set_allocator_requirement_test_templates.h"
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +000023
24
Eric Fiselier2960ae22016-02-11 11:59:44 +000025int main()
26{
Eric Fiselier83c9dc12016-04-15 23:27:27 +000027 testSetInsert<TCT::unordered_set<> >();
28 testSetEmplace<TCT::unordered_set<> >();
Eric Fiselier2960ae22016-02-11 11:59:44 +000029}