2014-10-15 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / libstdc++-v3 / testsuite / experimental / string_view / element_access / wchar_t / 1.cc
blob7d69adb89f00331dd5307dafca89e47bcec2d53b
1 // { dg-options "-std=gnu++14" }
3 // Copyright (C) 2013-2014 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 // basic_string_view element access
22 #include <experimental/string_view>
23 #include <stdexcept>
24 #include <testsuite_hooks.h>
26 bool
27 test01()
29 bool test [[gnu::unused]] = true;
31 typedef std::experimental::wstring_view::size_type csize_type;
32 typedef std::experimental::wstring_view::const_reference cref;
33 typedef std::experimental::wstring_view::reference ref;
34 csize_type csz01, csz02;
36 const std::experimental::wstring_view str01(L"tamarindo, costa rica");
37 std::experimental::wstring_view str02(L"41st street beach, capitola, california");
38 std::experimental::wstring_view str03;
40 // const_reference operator[] (size_type pos) const;
41 csz01 = str01.size();
42 cref cref1 = str01[csz01 - 1];
43 VERIFY( cref1 == L'a' );
44 // Undefined behavior at size().
45 //cref cref2 = str01[csz01];
46 //VERIFY( cref2 == wchar_t() );
48 // const_reference at(size_type pos) const;
49 csz01 = str01.size();
50 cref cref3 = str01.at(csz01 - 1);
51 VERIFY( cref3 == L'a' );
52 try
54 str01.at(csz01);
55 VERIFY( false ); // Should not get here, as exception thrown.
57 catch (std::out_of_range& fail)
59 VERIFY( true );
61 catch (...)
63 VERIFY( false );
66 return test;
69 int
70 main()
72 test01();
74 return 0;