[TableGen] Split DAGISelMatcherOpt FactorNodes into 2 functions. NFC (#125330)
[llvm-project.git] / libcxx / test / std / localization / locales / locale.convenience / conversions / conversions.buffer / state.pass.cpp
blob6ae7c9d66d1ed315e9f6c5ec36e9395d774a3cd6
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <locale>
11 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS -D_LIBCPP_ENABLE_CXX26_REMOVED_CODECVT -D_LIBCPP_ENABLE_CXX26_REMOVED_WSTRING_CONVERT
13 // wbuffer_convert<Codecvt, Elem, Tr>
15 // state_type state() const;
17 // XFAIL: no-wide-characters
19 #include <locale>
20 #include <codecvt>
21 #include <sstream>
22 #include <cassert>
24 #include "test_macros.h"
26 int main(int, char**)
28 typedef std::wbuffer_convert<std::codecvt_utf8<wchar_t> > B;
30 B b;
31 std::mbstate_t s = b.state();
32 ((void)s);
35 return 0;