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 // UNSUPPORTED: c++98, c++03
10 
11 // <fstream>
12 
13 // template <class charT, class traits = char_traits<charT> >
14 // class basic_ofstream
15 
16 // basic_ofstream(basic_ofstream&& rhs);
17 
18 #include <fstream>
19 #include <cassert>
20 #include "platform_support.h"
21 
22 int main(int, char**)
23 {
24     std::string temp = get_temp_file_name();
25     {
26         std::ofstream fso(temp.c_str());
27         std::ofstream fs = move(fso);
28         fs << 3.25;
29     }
30     {
31         std::ifstream fs(temp.c_str());
32         double x = 0;
33         fs >> x;
34         assert(x == 3.25);
35     }
36     std::remove(temp.c_str());
37     {
38         std::wofstream fso(temp.c_str());
39         std::wofstream fs = move(fso);
40         fs << 3.25;
41     }
42     {
43         std::wifstream fs(temp.c_str());
44         double x = 0;
45         fs >> x;
46         assert(x == 3.25);
47     }
48     std::remove(temp.c_str());
49 
50   return 0;
51 }
52