xref: /llvm-project/libcxx/test/std/utilities/function.objects/negators/binary_negate.pass.cpp (revision a470a13a7063e8c5318fe4f5ba864320092c6c7b)
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 //===----------------------------------------------------------------------===//
8 
9 // <functional>
10 
11 // binary_negate
12 
13 #define _LIBCPP_DISABLE_DEPRECATION_WARNINGS
14 
15 #include <functional>
16 #include <type_traits>
17 #include <cassert>
18 
19 int main(int, char**)
20 {
21     typedef std::binary_negate<std::logical_and<int> > F;
22     const F f = F(std::logical_and<int>());
23     static_assert((std::is_same<int, F::first_argument_type>::value), "" );
24     static_assert((std::is_same<int, F::second_argument_type>::value), "" );
25     static_assert((std::is_same<bool, F::result_type>::value), "" );
26     assert(!f(36, 36));
27     assert( f(36, 0));
28     assert( f(0, 36));
29     assert( f(0, 0));
30 
31   return 0;
32 }
33