]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string/modifiers/insert/char/83328.cc
PR libstdc++/83328 add correct basic_string::insert for initializer_list
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / modifiers / insert / char / 83328.cc
1 // Copyright (C) 2018 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-do run { target c++11 } }
19 // { dg-require-effective-target cxx11-abi }
20
21 // PR libstdc++/83328
22
23 #include <string>
24 #include <testsuite_hooks.h>
25
26 void
27 test01()
28 {
29 std::string s = "insert";
30 auto iter = s.insert(s.cbegin() + 2, std::initializer_list<char>{});
31 VERIFY( iter == s.begin() + 2 );
32
33 iter = s.insert(s.cend(), { 'e', 'd' });
34 std::string::iterator* check_type = &iter;
35 VERIFY( iter == s.cend() - 2 );
36 VERIFY( s == "inserted" );
37
38 iter = s.insert(s.begin() + 6, { ' ', 'r', 'e', 't', 'r', 'i' });
39 VERIFY( iter == s.begin() + 6 );
40 VERIFY( s == "insert retried" );
41 }
42
43 int main()
44 {
45 test01();
46 }