]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/vector/element_access/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / element_access / 1.cc
CommitLineData
f133a43e
BK
1// 2000-09-06
2// bkoz
3
83ffe9cd 4// Copyright (C) 2000-2023 Free Software Foundation, Inc.
f133a43e
BK
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
748086b7 9// Free Software Foundation; either version 3, or (at your option)
f133a43e
BK
10// any later version.
11
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.
16
17// You should have received a copy of the GNU General Public License along
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
f133a43e
BK
20
21// 23.2.4 vector
22
23#include <vector>
24#include <stdexcept>
fe413112 25#include <testsuite_hooks.h>
f133a43e
BK
26
27template<typename T>
28struct A { };
29
30struct B { };
31
a9ab8db1 32// http://gcc.gnu.org/ml/libstdc++/2000-09/msg00002.html
a9260b7e 33void test01()
f133a43e 34{
f133a43e
BK
35 std::vector< A<B> > vec01;
36 std::vector< A<B> > vec02(5);
37 typedef std::vector< A<B> >::size_type size_type;
38 typedef std::vector< A<B> >::reference reference;
39
40 try
41 {
11f10e6b 42 reference r01 __attribute__((unused)) = vec01.at(6);
f133a43e
BK
43 VERIFY( false ); // Should not get here, as exception thrown.
44 }
45 catch(std::out_of_range& err)
46 {
47 VERIFY( true );
48 }
49 catch(...)
50 {
51 VERIFY( false );
52 }
f133a43e
BK
53}
54
55int main()
56{
57 test01();
f133a43e
BK
58 return 0;
59}