//===----------------------------------------------------------------------===// // // 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 = new Codecvt); #include #include #include #include "test_macros.h" int main() { { typedef std::codecvt_utf8 Codecvt; typedef std::wstring_convert Myconv; Myconv myconv; assert(myconv.converted() == 0); } { typedef std::codecvt_utf8 Codecvt; typedef std::wstring_convert Myconv; Myconv myconv(new Codecvt); assert(myconv.converted() == 0); #if TEST_STD_VER > 11 static_assert(!std::is_convertible::value, ""); static_assert( std::is_constructible::value, ""); #endif } }