1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // <sstream>
10 
11 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
12 // class basic_istringstream
13 
14 // basic_istringstream(basic_istringstream&& rhs);
15 
16 #include <sstream>
17 #include <cassert>
18 
19 #include "test_macros.h"
20 
21 int main(int, char**)
22 {
23     {
24         std::istringstream ss0(" 123 456");
25         std::istringstream ss(std::move(ss0));
26         assert(ss.rdbuf() != 0);
27         assert(ss.good());
28         assert(ss.str() == " 123 456");
29         int i = 0;
30         ss >> i;
31         assert(i == 123);
32         ss >> i;
33         assert(i == 456);
34     }
35     {
36         std::wistringstream ss0(L" 123 456");
37         std::wistringstream ss(std::move(ss0));
38         assert(ss.rdbuf() != 0);
39         assert(ss.good());
40         assert(ss.str() == L" 123 456");
41         int i = 0;
42         ss >> i;
43         assert(i == 123);
44         ss >> i;
45         assert(i == 456);
46     }
47 
48   return 0;
49 }
50