1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-threads
10 // UNSUPPORTED: c++03, c++11, c++14, c++17
11 // XFAIL: availability-synchronization_library-missing
13 // stop_token(const stop_token&) noexcept;
17 #include <type_traits>
19 #include "test_macros.h"
21 static_assert(std::is_nothrow_copy_constructible_v
<std::stop_token
>);
23 int main(int, char**) {
25 std::stop_source source
;
26 auto st
= source
.get_token();
27 std::stop_token copy
{st
};
31 assert(st
.stop_possible());
32 assert(!st
.stop_requested());
34 assert(copy
.stop_possible());
35 assert(!copy
.stop_requested());
37 source
.request_stop();
38 assert(st
.stop_possible());
39 assert(st
.stop_requested());
41 assert(copy
.stop_possible());
42 assert(copy
.stop_requested());