24 lines
808 B
C++
24 lines
808 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// REQUIRES: has-unix-headers
|
|
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
|
// REQUIRES: libcpp-hardening-mode=debug
|
|
// XFAIL: availability-verbose_abort-missing
|
|
|
|
// 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;
|
|
}
|