1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
12 // class basic_istringstream
14 // void str(const basic_string<charT,traits,Allocator>& s);
19 #include "test_macros.h"
24 std::istringstream
ss(" 123 456");
25 assert(ss
.rdbuf() != 0);
27 assert(ss
.str() == " 123 456");
36 assert(ss
.str() == " 789");
40 #ifndef TEST_HAS_NO_WIDE_CHARACTERS
42 std::wistringstream
ss(L
" 123 456");
43 assert(ss
.rdbuf() != 0);
45 assert(ss
.str() == L
" 123 456");
54 assert(ss
.str() == L
" 789");