blob: ffd813f86fe7c54075c5b553e6c544b7b3a0dbfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <locale>
// wbuffer_convert<Codecvt, Elem, Tr>
// streambuf *rdbuf(streambuf *bytebuf);
#include <locale>
#include <codecvt>
#include <sstream>
#include <cassert>
int main()
{
typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > B;
{
std::stringstream s;
B b;
assert(b.rdbuf() == nullptr);
b.rdbuf(s.rdbuf());
assert(b.rdbuf() == s.rdbuf());
}
}
|