1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
16 #include <type_traits>
19 #include "test_macros.h"
20 #include "pointer_comparison_test_helper.h"
24 typedef std::greater_equal
<int> F
;
26 #if TEST_STD_VER <= 17
27 static_assert((std::is_same
<int, F::first_argument_type
>::value
), "" );
28 static_assert((std::is_same
<int, F::second_argument_type
>::value
), "" );
29 static_assert((std::is_same
<bool, F::result_type
>::value
), "" );
35 // test total ordering of int* for greater_equal<int*> and
36 // greater_equal<void>.
37 do_pointer_comparison_test
<std::greater_equal
>();
40 typedef std::greater_equal
<> F2
;
50 constexpr bool foo
= std::greater_equal
<int> () (36, 36);
51 static_assert ( foo
, "" );
53 constexpr bool bar
= std::greater_equal
<> () (36.0, 36);
54 static_assert ( bar
, "" );