//===----------------------------------------------------------------------===// // // 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: no-threads // UNSUPPORTED: libcpp-has-no-experimental-stop_token // UNSUPPORTED: c++03, c++11, c++14, c++17 // struct nostopstate_t { // explicit nostopstate_t() = default; // }; // // inline constexpr nostopstate_t nostopstate{}; #include #include #include #include "test_macros.h" static_assert(std::is_trivially_default_constructible_v); struct Empty {}; static_assert(sizeof(Empty) == sizeof(std::nostopstate_t)); template void conversionTest(T); template concept ImplicitlyDefaultConstructible = requires { conversionTest({}); }; static_assert(!ImplicitlyDefaultConstructible); int main(int, char**) { [[maybe_unused]] std::same_as auto x = std::nostopstate; [[maybe_unused]] auto y = std::nostopstate_t{}; return 0; }