aboutsummaryrefslogtreecommitdiff
path: root/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/str.pass.cpp
blob: 5c273dc45d2d6354ab58ffefd131b213eaf7ccc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//===----------------------------------------------------------------------===//
//
//                     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.
//
//===----------------------------------------------------------------------===//

// <strstream>

// class strstream

// char* str();

#include <strstream>
#include <cassert>

int main()
{
    {
        std::strstream out;
        out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
        assert(out.str() == std::string("123 4.5 dog"));
        out.freeze(false);
    }
}