blob: 4ad6c384c6e5d2564eac5cdf4a5a447f2d07e264 [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>
// istreambuf_iterator
// istreambuf_iterator(const proxy& p) throw();
#include <iterator>
#include <sstream>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
{
std::istringstream inf("abc");
std::istreambuf_iterator<char> j(inf);
std::istreambuf_iterator<char> i = j++;
assert(i != std::istreambuf_iterator<char>());
assert(*i == 'b');
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
std::wistringstream inf(L"abc");
std::istreambuf_iterator<wchar_t> j(inf);
std::istreambuf_iterator<wchar_t> i = j++;
assert(i != std::istreambuf_iterator<wchar_t>());
assert(*i == L'b');
}
#endif
return 0;
}