Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / libcxx / test / std / thread / thread.jthread / get_id.pass.cpp
blobb95929cd2ea2683132fb82bc9b4301135c5be033
1 //===----------------------------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
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;
15 #include <cassert>
16 #include <concepts>
17 #include <thread>
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());
40 return 0;