//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template > // class basic_ifstream // void close(); #include #include int main() { { std::ifstream fs; assert(!fs.is_open()); fs.open("test.dat"); assert(fs.is_open()); fs.close(); assert(!fs.is_open()); } { std::wifstream fs; assert(!fs.is_open()); fs.open("test.dat"); assert(fs.is_open()); fs.close(); assert(!fs.is_open()); } }