[Flang] Add semantics checks for CrayPointer usage in DSA list (#123171)
[llvm-project.git] / libcxx / test / std / thread / thread.stoptoken / stoptoken / nodiscard.verify.cpp
blobb62ecdc8551d01b5a75e079dd4479b8f0e945e3a
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]] bool stop_requested() const noexcept;
14 // [[nodiscard]] bool stop_possible() const noexcept;
15 // [[nodiscard]] friend bool operator==(const stop_token& lhs, const stop_token& rhs) noexcept;
17 #include <stop_token>
19 void test() {
20 std::stop_token st;
21 st.stop_requested(); // expected-warning {{ignoring return value of function}}
22 st.stop_possible(); // expected-warning {{ignoring return value of function}}
23 operator==(st, st); // expected-warning {{ignoring return value of function}}