Add an UNSPEC_PROLOGUE_USE to prevent the link register from being considered dead.
[official-gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector_element_access.cc
blob5f5b5d231de9bcd5deca357fd180ec40a3fb930d
1 // 2000-09-06
2 // bkoz
4 // Copyright (C) 2000 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
22 // 23.2.4 vector
24 #include <vector>
25 #include <stdexcept>
26 #include <testsuite_hooks.h>
28 template<typename T>
29 struct A { };
31 struct B { };
33 // http://gcc.gnu.org/ml/libstdc++/2000-09/msg00002.html
34 bool test01()
36 bool test = true;
37 std::vector< A<B> > vec01;
38 std::vector< A<B> > vec02(5);
39 typedef std::vector< A<B> >::size_type size_type;
40 typedef std::vector< A<B> >::reference reference;
42 try
44 reference r01 = vec01.at(6);
45 VERIFY( false ); // Should not get here, as exception thrown.
47 catch(std::out_of_range& err)
49 VERIFY( true );
51 catch(...)
53 VERIFY( false );
56 #ifdef DEBUG_ASSERT
57 assert(test);
58 #endif
60 return test;
63 int main()
65 test01();
67 return 0;