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/input.output/iostreams.base/ios/basic.ios.members/rdbuf.pass.cpp

32 lines
750 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.
//
//===----------------------------------------------------------------------===//
// <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);
}
}