//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 // This test relies on P0482 being fixed, which isn't in // older Apple dylibs // // XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14|15}} // // template <> class codecvt // int max_length() const noexcept; #include #include int main(int, char**) { using F = std::codecvt; const F& f = std::use_facet(std::locale::classic()); assert(f.max_length() == 4); static_assert(noexcept(f.max_length())); return 0; }