//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // basic_ostream& // operator<<(basic_ostream& os, // const basic_string& str); #include #include #include #include "min_allocator.h" 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()); } #if __cplusplus >= 201103L { typedef std::basic_string, min_allocator> S; std::basic_ostringstream out; S s("some text"); out << s; assert(out.good()); assert(s == out.str()); } { typedef std::basic_string, min_allocator> S; std::basic_ostringstream out; S s("some text"); out.width(12); out << s; assert(out.good()); assert(" " + s == out.str()); } { typedef std::basic_string, min_allocator> S; std::basic_ostringstream out; S s(L"some text"); out << s; assert(out.good()); assert(s == out.str()); } { typedef std::basic_string, min_allocator> S; std::basic_ostringstream out; S s(L"some text"); out.width(12); out << s; assert(out.good()); assert(L" " + s == out.str()); } #endif }