summaryrefslogtreecommitdiffstats
path: root/test/input.output/stream.buffers/streambuf/streambuf.cons/default.fail.cpp
blob: 7f8eb6309aed173d4c08330af35dc1d44923e994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===----------------------------------------------------------------------===//
//
//                     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();  // is protected

#include <streambuf>

int main()
{
    std::basic_streambuf<char> sb;
}