//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // wbuffer_convert // state_type state() const; #include #include #include #include int main() { typedef std::wbuffer_convert > B; { B b; std::mbstate_t s = b.state(); } }