//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class istream_iterator // istream_iterator(); #include #include int main() { std::istream_iterator i; assert(i == std::istream_iterator()); }