Home | History | Annotate | Download | only in set
      1 //===----------------------------------------------------------------------===//
      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 
     24 int main()
     25 {
     26   testSetInsert<TCT::set<> >();
     27   testSetEmplace<TCT::set<> >();
     28   testSetEmplaceHint<TCT::set<> >();
     29 }
     30