blob: 766e989b0fd9a2ae63cd60179681f7f3528816a7 [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 ostream_iterator
// ostream_iterator(ostream_type& s, const charT* delimiter);
#include <iterator>
#include <sstream>
#include <cassert>
#include "test_macros.h"
struct MyTraits : std::char_traits<char> {};
typedef std::basic_ostringstream<char, MyTraits> StringStream;
typedef std::basic_ostream<char, MyTraits> BasicStream;
void operator&(BasicStream const&) {}
int main(int, char**)
{
{
std::ostringstream outf;
std::ostream_iterator<int> i(outf, ", ");
assert(outf.good());
}
{
std::wostringstream outf;
std::ostream_iterator<double, wchar_t> i(outf, L", ");
assert(outf.good());
}
{
StringStream outf;
std::ostream_iterator<int, char, MyTraits> i(outf, ", ");
assert(outf.good());
}
return 0;
}