summaryrefslogtreecommitdiffstats
path: root/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/pcount.pass.cpp
blob: 8f3b8f445d3aabcbb58a6d85c9422088ad45e528 (plain)
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 distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <strstream>

// class strstream

// int pcount() const;

#include <strstream>
#include <cassert>

int main()
{
    {
        std::strstream out;
        assert(out.pcount() == 0);
        out << 123 << ' ' << 4.5 << ' ' << "dog";
        assert(out.pcount() == 11);
    }
}