Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / multimap / modifiers / dr130.cc
blobb303fa62e52a432328114a714f88d53228f22729
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2009-2013 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
21 // NOTE: This makes use of the fact that we know how moveable
22 // is implemented on multiset (via swap). If the implementation changed
23 // this test may begin to fail.
25 #include <map>
26 #include <vector>
27 #include <testsuite_hooks.h>
29 using namespace std;
31 void
32 test01()
34 bool test __attribute__((unused)) = true;
35 using namespace std;
37 multimap<int, int> mm0;
38 typedef multimap<int, int>::iterator iterator;
39 typedef multimap<int, int>::const_iterator const_iterator;
40 typedef multimap<int, int>::value_type value_type;
41 typedef iterator insert_return_type;
43 vector<insert_return_type> irt;
44 for (int i = 1; i <= 4; ++i)
45 for (int j = 1; j <= i; ++j)
46 irt.push_back( mm0.insert( value_type( i, i ) ) );
48 iterator pos1 = mm0.erase(irt[1]);
49 VERIFY( pos1 == irt[2] );
51 iterator pos2 = mm0.erase(irt[2]);
52 VERIFY( pos2 == irt[3] );
54 iterator pos3 = mm0.erase(irt[9]);
55 VERIFY( pos3 == mm0.end() );
58 void
59 test02()
61 bool test __attribute__((unused)) = true;
62 using namespace std;
64 multimap<int, int> mm0;
65 typedef multimap<int, int>::iterator iterator;
66 typedef multimap<int, int>::const_iterator const_iterator;
67 typedef multimap<int, int>::value_type value_type;
68 typedef iterator insert_return_type;
70 vector<insert_return_type> irt;
71 for (int i = 1; i <= 4; ++i)
72 for (int j = 1; j <= i; ++j)
73 irt.push_back( mm0.insert( value_type( i, i ) ) );
75 iterator pos1 = mm0.erase(irt[3], irt[6]);
76 VERIFY( pos1 == irt[6] );
78 iterator pos2 = mm0.erase(irt[6], ++irt[9]);
79 VERIFY( pos2 == mm0.end() );
82 int
83 main()
85 test01();
86 test02();