//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // wstring_convert // wstring_convert(Codecvt* pcvt, state_type state); #include #include #include int main() { { typedef std::codecvt_utf8 Codecvt; typedef std::wstring_convert Myconv; Myconv myconv(new Codecvt, std::mbstate_t()); assert(myconv.converted() == 0); } }