cxx/test/input.output/iostreams.base/ios/basic.ios.members/rdbuf.pass.cpp
2010-05-11 21:36:01 +00:00

32 lines
735 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <ios>
// template <class charT, class traits> class basic_ios
// basic_streambuf<charT,traits>* rdbuf() const;
#include <ios>
#include <streambuf>
#include <cassert>
int main()
{
{
const std::ios ios(0);
assert(ios.rdbuf() == 0);
}
{
std::streambuf* sb = (std::streambuf*)1;
const std::ios ios(sb);
assert(ios.rdbuf() == sb);
}
}