]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_stringbuf/overflow/char/3599.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_stringbuf / overflow / char / 3599.cc
CommitLineData
23cac885 1// 1999-10-11 bkoz
e6705174 2
8d9254fc 3// Copyright (C) 1999-2020 Free Software Foundation, Inc.
e6705174
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
e6705174
BK
9// any later version.
10
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.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
e6705174 19
e6705174 20
23cac885
BK
21#include <sstream>
22#include <ostream>
23#include <testsuite_hooks.h>
e6705174 24
23cac885
BK
25// libstdc++/3599
26class testbuf : public std::stringbuf
27{
28public:
29 typedef std::stringbuf::traits_type traits_type;
30
31 testbuf() : std::stringbuf() { }
32
33protected:
34 int_type
11f10e6b 35 overflow(int_type c __attribute__((unused)) = traits_type::eof())
23cac885
BK
36 { return traits_type::not_eof(0); }
37};
e6705174 38
23cac885
BK
39void
40test07()
e6705174 41{
23cac885
BK
42 testbuf ob;
43 std::ostream out(&ob);
44
45 out << "gasp";
46 VERIFY(out.good());
47
48 out << std::endl;
49 VERIFY(out.good());
e6705174
BK
50}
51
52int main()
53{
54 test07();
55 return 0;
56}