blob: 4fd650637080f78cda0421e195dfa3e5eedeaa0d [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');
}
{
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');
}
return 0;
}