| //===----------------------------------------------------------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 |
| |
| // REQUIRES: has-unix-headers |
| // XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx{{10.9|10.10|10.11|10.12|10.13|10.14|10.15|11.0|12.0}} |
| // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_ENABLE_ASSERTIONS=1 |
| |
| // Make sure that reaching std::unreachable() with assertions enabled triggers an assertion. |
| |
| #include <utility> |
| |
| #include "check_assertion.h" |
| |
| int main(int, char**) { |
| TEST_LIBCPP_ASSERT_FAILURE(std::unreachable(), "std::unreachable() was reached"); |
| |
| return 0; |
| } |