//===----------------------------------------------------------------------===// // // 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 // // template constexpr strong_ordering strong_order(const T& a, const T& b); // libc++ does not support strong_order(long double, long double) quite yet. // This test verifies the error message we give for that case. // TODO: remove this test once long double is properly supported. #include #include "test_macros.h" void f() { long double ld = 3.14; #ifdef TEST_LONG_DOUBLE_IS_DOUBLE (void)ld; // expected-no-diagnostics #else (void)std::strong_order(ld, ld); // expected-error@*:* {{std::strong_order is unimplemented for this floating-point type}} #endif }