blob: 7fda2adffd82e2c139494e8ef6b30d1565d094f1 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <iterator>
// class istream_iterator
// const T& operator*() const;
#include <iterator>
#include <sstream>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
std::istringstream inf(" 1 23");
std::istream_iterator<int> i(inf);
int j = 0;
j = *i;
assert(j == 1);
j = *i;
assert(j == 1);
++i;
j = *i;
assert(j == 23);
j = *i;
assert(j == 23);
return 0;
}