//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. 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(); } }