OSDN Git Service

3cc90cb4005d36861771cdbec1bc19f4372998c4
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 24_iterators / operations / prev.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // Copyright (C) 2008 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 2, or (at your option)
9 // any later version.
10
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.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 24.3.4 Iterator operations [iterator.operations]
22
23 #include <vector>
24 #include <list>
25 #include <iterator>
26 #include <testsuite_hooks.h>
27
28 void test01()
29 {
30   bool test __attribute__((unused)) = true;
31   std::vector<int> c(3);    
32   std::vector<int>::iterator i = c.end(), j;
33
34   j = std::prev(i, 3);
35   VERIFY( i == c.end() );
36   VERIFY( j == c.begin() );
37 }
38
39 void test02()
40 {
41   bool test __attribute__((unused)) = true;
42   std::list<int> c(3);    
43   std::list<int>::iterator i = c.end(), j;
44
45   j = std::prev(i, 3);
46   VERIFY( i == c.end() );
47   VERIFY( j == c.begin() );
48 }
49
50 int main()
51 {
52   test01();
53   test02();
54   return 0;
55 }