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 // [[nodiscard]] stop_source get_stop_source() noexcept;
19 #include <type_traits>
21 #include "make_test_thread.h"
22 #include "test_macros.h"
24 static_assert(noexcept(std::declval
<std::jthread
&>().get_stop_source()));
26 int main(int, char**) {
27 // Represents a thread
29 std::jthread jt
= support::make_test_jthread([] {});
30 std::same_as
<std::stop_source
> decltype(auto) result
= jt
.get_stop_source();
31 assert(result
.stop_possible());
34 // Does not represents a thread
37 std::same_as
<std::stop_source
> decltype(auto) result
= jt
.get_stop_source();
38 assert(!result
.stop_possible());