cxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/freeze.pass.cpp
2010-05-11 21:36:01 +00:00

29 lines
645 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. 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');
}
}