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]] id get_id() const noexcept;
18 #include <type_traits>
20 #include "make_test_thread.h"
21 #include "test_macros.h"
23 static_assert(noexcept(std::declval
<const std::jthread
&>().get_id()));
25 int main(int, char**) {
26 // Does not represent a thread
28 const std::jthread jt
;
29 std::same_as
<std::jthread::id
> decltype(auto) result
= jt
.get_id();
30 assert(result
== std::jthread::id());
33 // Represents a thread
35 const std::jthread jt
= support::make_test_jthread([] {});
36 std::same_as
<std::jthread::id
> decltype(auto) result
= jt
.get_id();
37 assert(result
!= std::jthread::id());