1 // { dg-do compile { target c++14 } }
2 
3 // Copyright (C) 2013-2018 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10 
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3.  If not see
18 // <http://www.gnu.org/licenses/>.
19 
20 // 20.3.3 Comparisons
21 
22 #include <functional>
23 
24 struct R { };
25 
26 struct L
27 {
operator +L28   L operator+(const R&) const { return *this; }
operator -L29   L operator-(const R&) const { return *this; }
operator *L30   L operator*(const R&) const { return *this; }
operator /L31   L operator/(const R&) const { return *this; }
operator %L32   L operator%(const R&) const { return *this; }
operator -L33   L operator-() const { return *this; }
34 
operator ==L35   bool operator==(const R&) const { return true; }
operator !=L36   bool operator!=(const R&) const { return false; }
operator <L37   bool operator<(const R&) const { return false; }
operator <=L38   bool operator<=(const R&) const { return true; }
operator >L39   bool operator>(const R&) const { return false; }
operator >=L40   bool operator>=(const R&) const { return true; }
41 
operator &&L42   bool operator&&(const R&) const { return true; }
operator ||L43   bool operator||(const R&) const { return true; }
operator !L44   bool operator!() const { return false; }
45 
operator &L46   int operator&(const R&) const { return 1; }
operator |L47   int operator|(const R&) const { return 1; }
operator ^L48   int operator^(const R&) const { return 0; }
operator ~L49   int operator~() const { return 0; }
50 };
51 
52 L l;
53 R r;
54 
55 // test unary function objects
56 template<typename F, typename Check = typename F::is_transparent>
57 bool
test1(F f)58 test1(F f)
59 {
60   f(l);
61   return true;
62 }
63 
64 // test binary function objects
65 template<typename F, typename Check = typename F::is_transparent>
66 bool
test2(F f)67 test2(F f)
68 {
69   f(l, r);
70   return true;
71 }
72 
73 auto plus       = test2( std::plus<>() );
74 auto minus      = test2( std::minus<>() );
75 auto multiplies = test2( std::multiplies<>() );
76 auto divides    = test2( std::divides<>() );
77 auto modulus    = test2( std::modulus<>() );
78 auto negate     = test1( std::negate<>() );
79 
80 auto equal_to       = test2( std::equal_to<>() );
81 auto not_equal_to   = test2( std::not_equal_to<>() );
82 auto greater        = test2( std::greater<>() );
83 auto less           = test2( std::less<>() );
84 auto greater_equal  = test2( std::greater_equal<>() );
85 auto less_equal     = test2( std::less_equal<>() );
86 
87 auto logical_and    = test2( std::logical_and<>() );
88 auto logical_or     = test2( std::logical_or<>() );
89 auto logical_not    = test1( std::logical_not<>() );
90 
91 auto bit_and        = test2( std::bit_and<>() );
92 auto bit_or         = test2( std::bit_or<>() );
93 auto bit_xor        = test2( std::bit_xor<>() );
94 auto bit_not        = test1( std::bit_not<>() );
95