Home | History | Annotate | Download | only in multimap.modifiers
      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 // <map>
     11 
     12 // class multimap
     13 
     14 // insert(...)
     15 
     16 // UNSUPPORTED: c++98, c++03
     17 
     18 #include <map>
     19 
     20 #include "container_test_types.h"
     21 #include "../../../map_allocator_requirement_test_templates.h"
     22 
     23 
     24 int main()
     25 {
     26   testMultimapInsert<TCT::multimap<> >();
     27   testMultimapInsertHint<TCT::multimap<> >();
     28 }
     29