IBM Z: Fix ICE in expand_perm_as_replicate
[official-gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / element_access / char / 1.cc
blobd7a9754c06936a2f80fdb45e8bb94d44bee7527f
1 // 1999-06-08 bkoz
3 // Copyright (C) 1999-2024 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 3, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 21.3.4 basic_string element access
22 #include <string>
23 #include <stdexcept>
24 #include <testsuite_hooks.h>
26 void test01(void)
28 typedef std::string::size_type csize_type;
29 typedef std::string::const_reference cref;
30 typedef std::string::reference ref;
31 csize_type csz01, csz02;
33 const std::string str01("tamarindo, costa rica");
34 std::string str02("41st street beach, capitola, california");
35 std::string str03;
37 // const_reference operator[] (size_type pos) const;
38 csz01 = str01.size();
39 cref cref1 = str01[csz01 - 1];
40 VERIFY( cref1 == 'a' );
41 cref cref2 = str01[csz01];
42 VERIFY( cref2 == char() );
44 // reference operator[] (size_type pos);
45 csz02 = str02.size();
46 ref ref1 = str02[csz02 - 1];
47 VERIFY( ref1 == 'a' );
48 ref ref2 = str02[1];
49 VERIFY( ref2 == '1' );
51 // const_reference at(size_type pos) const;
52 csz01 = str01.size();
53 cref cref3 = str01.at(csz01 - 1);
54 VERIFY( cref3 == 'a' );
55 try {
56 (void) str01.at(csz01);
57 VERIFY( false ); // Should not get here, as exception thrown.
59 catch(std::out_of_range& fail) {
60 VERIFY( true );
62 catch(...) {
63 VERIFY( false );
66 // reference at(size_type pos);
67 csz01 = str02.size();
68 ref ref3 = str02.at(csz02 - 1);
69 VERIFY( ref3 == 'a' );
70 try {
71 (void) str02.at(csz02);
72 VERIFY( false ); // Should not get here, as exception thrown.
74 catch(std::out_of_range& fail) {
75 VERIFY( true );
77 catch(...) {
78 VERIFY( false );
82 int main()
84 test01();
85 return 0;