blob: f80af94b7f96285e60985e5c09451fc614a783a4 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <sstream>
11
12// template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
13// class basic_stringstream
14
15// basic_stringstream(basic_stringstream&& rhs);
16
17#include <sstream>
18#include <cassert>
19
20int main()
21{
Howard Hinnant73d21a42010-09-04 23:28:19 +000022#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000023 {
24 std::stringstream ss0(" 123 456 ");
25 std::stringstream 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 ss << i << ' ' << 123;
35 assert(ss.str() == "456 1236 ");
36 }
37 {
38 std::wstringstream ss0(L" 123 456 ");
39 std::wstringstream ss(std::move(ss0));
40 assert(ss.rdbuf() != 0);
41 assert(ss.good());
42 assert(ss.str() == L" 123 456 ");
43 int i = 0;
44 ss >> i;
45 assert(i == 123);
46 ss >> i;
47 assert(i == 456);
48 ss << i << ' ' << 123;
49 assert(ss.str() == L"456 1236 ");
50 }
Howard Hinnant73d21a42010-09-04 23:28:19 +000051#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000052}