blob: b14340b1d763f9aff28d81579826d5aef51acc2a [file] [log] [blame]
Eric Fiselier83c9dc12016-04-15 23:27:27 +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// <set>
11
12// class set
13
14// insert(...)
15// emplace(...)
16// emplace_hint(...)
17
18// UNSUPPORTED: c++98, c++03
19
20#include <set>
21#include "container_test_types.h"
22#include "../../set_allocator_requirement_test_templates.h"
23
24int main()
25{
26 testSetInsert<TCT::set<> >();
27 testSetEmplace<TCT::set<> >();
28 testSetEmplaceHint<TCT::set<> >();
29}