// -*- C++ -*- //===----------------------------------------------------------------------===// // // 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++98, c++03 // // namespace std { namespace experimental { namespace pmr { // // template // using match_results = // std::match_results>>; // // typedef match_results cmatch; // typedef match_results wcmatch; // typedef match_results smatch; // typedef match_results wsmatch; // // }}} // namespace std::experimental::pmr #include #include #include #include "test_macros.h" namespace pmr = std::experimental::pmr; template void test_match_result_typedef() { using StdMR = std::match_results>>; using PmrMR = pmr::match_results; static_assert(std::is_same::value, ""); static_assert(std::is_same::value, ""); } int main(int, char**) { { test_match_result_typedef(); test_match_result_typedef(); test_match_result_typedef(); test_match_result_typedef(); } { // Check that std::match_results has been included and is complete. pmr::smatch s; assert(s.get_allocator().resource() == pmr::get_default_resource()); } return 0; }