blob: 2d4beee37ec205df4604041ceac9672dffb387b2 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000010// <ios>
11
12// template <class charT, class traits> class basic_ios
13
14// void set_rdbuf(basic_streambuf<charT, traits>* sb);
15
16#include <ios>
17#include <streambuf>
18#include <cassert>
19
20struct testbuf
21 : public std::streambuf
22{
23};
24
25struct testios
26 : public std::ios
27{
28 testios(std::streambuf* p) : std::ios(p) {}
29 void set_rdbuf(std::streambuf* x) {std::ios::set_rdbuf(x);}
30};
31
32int main()
33{
34 testbuf sb1;
35 testbuf sb2;
36 testios ios(&sb1);
37 try
38 {
39 ios.setstate(std::ios::badbit);
40 ios.exceptions(std::ios::badbit);
41 }
42 catch (...)
43 {
44 }
45 ios.set_rdbuf(&sb2);
46 assert(ios.rdbuf() == &sb2);
47 try
48 {
49 ios.setstate(std::ios::badbit);
50 ios.exceptions(std::ios::badbit);
51 }
52 catch (...)
53 {
54 }
55 ios.set_rdbuf(0);
56 assert(ios.rdbuf() == 0);
57}