Merge from mainline (154736:156693)
[official-gcc/graphite-test-results.git] / libstdc++-v3 / testsuite / 23_containers / vector / debug_mode_requires_reallocation-1.cc
blob3f65119a7a952934732f1ba888cb62cb74b98ff4
1 // Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // NB: This issue affected only debug-mode.
20 #include <vector>
21 #include <algorithm>
22 #include <iterator>
24 // http://gcc.gnu.org/ml/libstdc++/2008-05/msg00039.html
25 void test01()
27 typedef std::vector<unsigned> array_t;
28 typedef std::back_insert_iterator<array_t> bii_t;
30 array_t a;
32 // Push 5 elements.
33 a.push_back(0);
34 a.push_back(1);
35 a.push_back(2);
36 a.push_back(3);
37 a.push_back(4);
38 // Ensure that there is enough space for other two elements.
39 // (2 + 5 = 7)
40 if (a.capacity() < 7)
41 a.reserve(7);
42 // Add two new elements.
43 std::copy(a.begin(), a.begin() + 2, bii_t(a));
46 int main()
48 test01();
49 return 0;