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 // FILE_DEPENDENCIES: test.dat 10 11 // <fstream> 12 13 // template <class charT, class traits = char_traits<charT> > 14 // class basic_ifstream 15 16 // basic_ifstream(basic_ifstream&& rhs); 17 18 #include <fstream> 19 #include <cassert> 20 21 #include "test_macros.h" 22 23 int main(int, char**) 24 { 25 { 26 std::ifstream fso("test.dat"); 27 std::ifstream fs = std::move(fso); 28 double x = 0; 29 fs >> x; 30 assert(x == 3.25); 31 } 32 #ifndef TEST_HAS_NO_WIDE_CHARACTERS 33 { 34 std::wifstream fso("test.dat"); 35 std::wifstream fs = std::move(fso); 36 double x = 0; 37 fs >> x; 38 assert(x == 3.25); 39 } 40 #endif 41 42 return 0; 43 } 44