26 lines
620 B
C++
26 lines
620 B
C++
|
//===----------------------------------------------------------------------===//
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
|||
|
//
|
|||
|
// This file is distributed under the University of Illinois Open Source
|
|||
|
// License. See LICENSE.TXT for details.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// <streambuf>
|
|||
|
|
|||
|
// template <class charT, class traits = char_traits<charT> >
|
|||
|
// class basic_streambuf;
|
|||
|
|
|||
|
// basic_streambuf(const basic_streambuf& rhs); // protected
|
|||
|
|
|||
|
#include <streambuf>
|
|||
|
#include <cassert>
|
|||
|
|
|||
|
std::streambuf get();
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
std::streambuf sb = get();
|
|||
|
}
|