You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/freeze.pass.cpp

29 lines
660 B
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.
//
//===----------------------------------------------------------------------===//
// <strstream>
// class strstreambuf
// void freeze(bool freezefl = true);
#include <strstream>
#include <cassert>
int main()
{
{
std::strstreambuf sb;
sb.freeze(true);
assert(sb.sputc('a') == EOF);
sb.freeze(false);
assert(sb.sputc('a') == 'a');
}
}