Daily bump.
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / rvalue_streams-2.cc
blob00d74821db5150588e82f0787c2e3399fc8a4d06
1 // { dg-do compile { target c++11 } }
3 // Copyright (C) 2015-2024 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 #include <sstream>
22 struct A {};
24 void operator<<(std::ostream&, const A&) { }
25 void operator>>(std::istream&, A&) { }
27 class MyStream : private std::ostream, private std::istream
29 public:
30 MyStream& operator <<(const char*)
32 return *this;
34 MyStream& operator >>(int&)
36 return *this;
40 class MyStream2
42 public:
43 MyStream2& operator <<(const char*)
45 return *this;
47 MyStream2& operator >>(int&)
49 return *this;
51 private:
52 operator std::ostream&();
53 operator std::istream&();
56 struct X { };
58 std::ostream& operator<<(std::ostream& os, const X&) { return os; }
59 std::istream& operator>>(std::istream& is, X&&) { return is; }
61 // PR libstdc++/65543
62 // PR libstdc++/80940
63 int main()
65 A a;
67 std::ostringstream() << a;
68 std::istringstream() >> a;
69 MyStream stream{};
70 stream << "aaa";
71 int msi;
72 stream >> msi;
73 MyStream2 stream2{};
74 stream2 << "aaa";
75 stream2 >> msi;