//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // template <> class codecvt // bool always_noconv() const noexcept; // UNSUPPORTED: c++03, c++11, c++14, c++17 // C++20 codecvt specializations for char8_t are not yet implemented: // UNSUPPORTED: libc++ #include #include int main(int, char**) { using F = std::codecvt; const F& f = std::use_facet(std::locale::classic()); assert(!f.always_noconv()); static_assert(noexcept(f.always_noconv())); return 0; }