]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/cons/char/69092.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / cons / char / 69092.cc
CommitLineData
83ffe9cd 1// Copyright (C) 2016-2023 Free Software Foundation, Inc.
373a75fb
JW
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
52066eae 18// { dg-do run { target c++11 } }
373a75fb
JW
19
20// PR libstdc++/69092
21
22#include <string>
23#include <iterator>
24
de196e5d
JW
25struct hate_T_iterator {
26
27 typedef std::forward_iterator_tag iterator_category;
28 typedef char value_type;
29 typedef std::ptrdiff_t difference_type;
30 typedef char* pointer;
31 typedef char& reference;
32
373a75fb
JW
33 explicit hate_T_iterator(char* p) : p(p) {}
34 char* p;
35
36 hate_T_iterator& operator++() { ++p; return *this; }
37
38 hate_T_iterator operator++(int)
39 {
40 hate_T_iterator r = *this;
41 ++*this; return r;
42 }
43
44 char& operator*() const
45 {
46 if (*p == 'T')
47 throw 1;
48 return *p;
49 }
50
51 char* operator->() const { return p; }
52
53 bool operator== (hate_T_iterator other) const { return p == other.p;}
54 bool operator!= (hate_T_iterator other) const { return p != other.p;}
55};
56
57int main()
58{
59 char test_str[4] = "ATA";
60 try {
61 std::string s(hate_T_iterator(test_str), hate_T_iterator(test_str+3));
62 }
63 catch(int) {
64 }
65}