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 multiset
13 
14 // insert(...)
15 
16 // UNSUPPORTED: c++98, c++03
17 
18 #include <set>
19 
20 #include "container_test_types.h"
21 #include "../../set_allocator_requirement_test_templates.h"
22 
main()23 int main()
24 {
25   testMultisetInsert<TCT::multiset<> >();
26 }
27