Home | History | Annotate | Download | only in unord.multiset
      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 // <unordered_set>
     11 
     12 // class unordered_multiset
     13 
     14 // insert(...)
     15 
     16 // UNSUPPORTED: c++98, c++03
     17 
     18 #include <unordered_set>
     19 #include "container_test_types.h"
     20 #include "../../set_allocator_requirement_test_templates.h"
     21 
     22 int main()
     23 {
     24   testMultisetInsert<TCT::unordered_multiset<> >();
     25 }
     26