Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / utilities / utility / utility.unreachable / assert.unreachable.pass.cpp
blob12c45f83c13c8f2f8e8031bf77697f6de22931b5
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 //===----------------------------------------------------------------------===//
9 // REQUIRES: has-unix-headers
10 // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
11 // REQUIRES: libcpp-hardening-mode={{safe|debug}}
12 // XFAIL: availability-verbose_abort-missing
14 // Make sure that reaching std::unreachable() with assertions enabled triggers an assertion.
16 #include <utility>
18 #include "check_assertion.h"
20 int main(int, char**) {
21 TEST_LIBCPP_ASSERT_FAILURE(std::unreachable(), "std::unreachable() was reached");
23 return 0;