summaryrefslogtreecommitdiff
path: root/libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp
blob: 03c46d232c38bae388c5635c6a33ce7774971b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//===----------------------------------------------------------------------===//
//
// 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++98, c++03, c++11, c++14

// <functional>

// Make sure that we can use CTAD with operations in <functional>

#include <functional>

#include "test_macros.h"

int main(int, char**) {
    {
        std::plus f;
        ASSERT_SAME_TYPE(decltype(f), std::plus<>);
    }
    {
        std::minus f;
        ASSERT_SAME_TYPE(decltype(f), std::minus<>);
    }
    {
        std::multiplies f;
        ASSERT_SAME_TYPE(decltype(f), std::multiplies<>);
    }
    {
        std::divides f;
        ASSERT_SAME_TYPE(decltype(f), std::divides<>);
    }
    {
        std::modulus f;
        ASSERT_SAME_TYPE(decltype(f), std::modulus<>);
    }
    {
        std::negate f;
        ASSERT_SAME_TYPE(decltype(f), std::negate<>);
    }
    {
        std::bit_and f;
        ASSERT_SAME_TYPE(decltype(f), std::bit_and<>);
    }
    {
        std::bit_not f;
        ASSERT_SAME_TYPE(decltype(f), std::bit_not<>);
    }
    {
        std::bit_or f;
        ASSERT_SAME_TYPE(decltype(f), std::bit_or<>);
    }
    {
        std::bit_xor f;
        ASSERT_SAME_TYPE(decltype(f), std::bit_xor<>);
    }
    {
        std::equal_to f;
        ASSERT_SAME_TYPE(decltype(f), std::equal_to<>);
    }
    {
        std::not_equal_to f;
        ASSERT_SAME_TYPE(decltype(f), std::not_equal_to<>);
    }
    {
        std::less f;
        ASSERT_SAME_TYPE(decltype(f), std::less<>);
    }
    {
        std::less_equal f;
        ASSERT_SAME_TYPE(decltype(f), std::less_equal<>);
    }
    {
        std::greater_equal f;
        ASSERT_SAME_TYPE(decltype(f), std::greater_equal<>);
    }
    {
        std::greater f;
        ASSERT_SAME_TYPE(decltype(f), std::greater<>);
    }
    {
        std::logical_and f;
        ASSERT_SAME_TYPE(decltype(f), std::logical_and<>);
    }
    {
        std::logical_not f;
        ASSERT_SAME_TYPE(decltype(f), std::logical_not<>);
    }
    {
        std::logical_or f;
        ASSERT_SAME_TYPE(decltype(f), std::logical_or<>);
    }

    return 0;
}