cxx/test/strings/basic.string/string.nonmembers/string.io/stream_insert.pass.cpp
Howard Hinnant b64f8b07c1 license change
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@119395 91177308-0d34-0410-b5e6-96231b3b80d8
2010-11-16 22:09:02 +00:00

54 lines
1.3 KiB
C++

//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <string>
// template<class charT, class traits, class Allocator>
// basic_ostream<charT, traits>&
// operator<<(basic_ostream<charT, traits>& os,
// const basic_string<charT,traits,Allocator>& str);
#include <string>
#include <sstream>
#include <cassert>
int main()
{
{
std::ostringstream out;
std::string s("some text");
out << s;
assert(out.good());
assert(s == out.str());
}
{
std::ostringstream out;
std::string s("some text");
out.width(12);
out << s;
assert(out.good());
assert(" " + s == out.str());
}
{
std::wostringstream out;
std::wstring s(L"some text");
out << s;
assert(out.good());
assert(s == out.str());
}
{
std::wostringstream out;
std::wstring s(L"some text");
out.width(12);
out << s;
assert(out.good());
assert(L" " + s == out.str());
}
}