]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-1.cc
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / debug_mode_requires_reallocation-1.cc
CommitLineData
748086b7 1// Copyright (C) 2008, 2009 Free Software Foundation, Inc.
36d6d979
RB
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
36d6d979
RB
7// any later version.
8
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.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
36d6d979
RB
17
18// { dg-options "-D_GLIBCXX_DEBUG" }
19
20#include <vector>
21#include <algorithm>
22#include <iterator>
23
24// http://gcc.gnu.org/ml/libstdc++/2008-05/msg00039.html
25void test01()
26{
27 typedef std::vector<unsigned> array_t;
28 typedef std::back_insert_iterator<array_t> bii_t;
29
30 array_t a;
31
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));
44}
45
46int main()
47{
48 test01();
49 return 0;
50}