]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/string_view/requirements/typedefs.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / string_view / requirements / typedefs.cc
CommitLineData
77cba5af
ESR
1
2// { dg-options "-std=gnu++1y" }
3// { dg-do compile }
4
aa118a03 5// Copyright (C) 2013-2014 Free Software Foundation, Inc.
77cba5af
ESR
6//
7// This file is part of the GNU ISO C++ Library. This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 3, or (at your option)
11// any later version.
12
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License along
19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
21
22#include <experimental/string_view>
23#include <testsuite_containers.h>
24
25namespace __gnu_test
26{
27 template<typename _Tp1, typename _Tp2>
28 struct traits<std::experimental::basic_string_view<_Tp1, _Tp2>> : public traits_base
29 {
30 typedef std::true_type is_container;
31 typedef std::true_type is_reversible;
32 };
33}
34
35#include <testsuite_containers.h>
36
37// Check container for required typedefs.
38
39__gnu_test::basic_types<std::experimental::string_view> t1b;
40__gnu_test::reversible_types<std::experimental::string_view> t1r;
41typedef typename std::experimental::string_view::traits_type traits_type1;
42
43#ifdef _GLIBCXX_USE_WCHAR_T
44__gnu_test::basic_types<std::experimental::wstring_view> t2b;
45__gnu_test::reversible_types<std::experimental::wstring_view> t2r;
46typedef typename std::experimental::wstring_view::traits_type traits_type2;
47#endif