blob: 328b818aa6007c1de327782c1d70786547f6e642 [file] [log] [blame]
Eric Fiselier8d5cbd72016-04-20 00:14:32 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// UNSUPPORTED: c++98, c++03, c++11, c++14
11
12// type_traits
13
14// is_callable
15
16// Most testing of is_callable is done within the [meta.trans.other] result_of
17// tests.
18
19#include <type_traits>
20#include <functional>
Eric Fiselier6531a092016-04-29 00:37:56 +000021#include <memory>
Eric Fiselier8d5cbd72016-04-20 00:14:32 +000022
23#include "test_macros.h"
24
25struct Tag {};
26struct DerFromTag : Tag {};
27
28struct Implicit {
29 Implicit(int) {}
30};
31
32struct Explicit {
33 explicit Explicit(int) {}
34};
35
36struct NotCallableWithInt {
37 int operator()(int) = delete;
38 int operator()(Tag) { return 42; }
39};
40
41int main()
42{
43 {
44 using Fn = int(Tag::*)(int);
45 using RFn = int(Tag::*)(int) &&;
46 // INVOKE bullet 1, 2 and 3
47 {
48 // Bullet 1
49 static_assert(std::is_callable<Fn(Tag&, int)>::value);
50 static_assert(std::is_callable<Fn(DerFromTag&, int)>::value);
51 static_assert(std::is_callable<RFn(Tag&&, int)>::value);
52 static_assert(!std::is_callable<RFn(Tag&, int)>::value);
53 static_assert(!std::is_callable<Fn(Tag&)>::value);
54 static_assert(!std::is_callable<Fn(Tag const&, int)>::value);
55 }
56 {
57 // Bullet 2
58 using T = std::reference_wrapper<Tag>;
59 using DT = std::reference_wrapper<DerFromTag>;
60 using CT = std::reference_wrapper<const Tag>;
61 static_assert(std::is_callable<Fn(T&, int)>::value);
62 static_assert(std::is_callable<Fn(DT&, int)>::value);
63 static_assert(std::is_callable<Fn(const T&, int)>::value);
64 static_assert(std::is_callable<Fn(T&&, int)>::value);
65 static_assert(!std::is_callable<Fn(CT&, int)>::value);
66 static_assert(!std::is_callable<RFn(T, int)>::value);
67 }
68 {
69 // Bullet 3
70 using T = Tag*;
71 using DT = DerFromTag*;
72 using CT = const Tag*;
73 using ST = std::unique_ptr<Tag>;
74 static_assert(std::is_callable<Fn(T&, int)>::value);
75 static_assert(std::is_callable<Fn(DT&, int)>::value);
76 static_assert(std::is_callable<Fn(const T&, int)>::value);
77 static_assert(std::is_callable<Fn(T&&, int)>::value);
78 static_assert(std::is_callable<Fn(ST, int)>::value);
79 static_assert(!std::is_callable<Fn(CT&, int)>::value);
80 static_assert(!std::is_callable<RFn(T, int)>::value);
81 }
82 }
83 {
84 // Bullets 4, 5 and 6
85 using Fn = int (Tag::*);
86 static_assert(!std::is_callable<Fn()>::value);
87 {
88 // Bullet 4
89 static_assert(std::is_callable<Fn(Tag&)>::value);
90 static_assert(std::is_callable<Fn(DerFromTag&)>::value);
91 static_assert(std::is_callable<Fn(Tag&&)>::value);
92 static_assert(std::is_callable<Fn(Tag const&)>::value);
93 }
94 {
95 // Bullet 5
96 using T = std::reference_wrapper<Tag>;
97 using DT = std::reference_wrapper<DerFromTag>;
98 using CT = std::reference_wrapper<const Tag>;
99 static_assert(std::is_callable<Fn(T&)>::value);
100 static_assert(std::is_callable<Fn(DT&)>::value);
101 static_assert(std::is_callable<Fn(const T&)>::value);
102 static_assert(std::is_callable<Fn(T&&)>::value);
103 static_assert(std::is_callable<Fn(CT&)>::value);
104 }
105 {
106 // Bullet 6
107 using T = Tag*;
108 using DT = DerFromTag*;
109 using CT = const Tag*;
110 using ST = std::unique_ptr<Tag>;
111 static_assert(std::is_callable<Fn(T&)>::value);
112 static_assert(std::is_callable<Fn(DT&)>::value);
113 static_assert(std::is_callable<Fn(const T&)>::value);
114 static_assert(std::is_callable<Fn(T&&)>::value);
115 static_assert(std::is_callable<Fn(ST)>::value);
116 static_assert(std::is_callable<Fn(CT&)>::value);
117 }
118 }
119 {
120 // INVOKE bullet 7
121 {
122 // Function pointer
123 using Fp = void(*)(Tag&, int);
124 static_assert(std::is_callable<Fp(Tag&, int)>::value);
125 static_assert(std::is_callable<Fp(DerFromTag&, int)>::value);
126 static_assert(!std::is_callable<Fp(const Tag&, int)>::value);
127 static_assert(!std::is_callable<Fp()>::value);
128 static_assert(!std::is_callable<Fp(Tag&)>::value);
129 }
130 {
131 // Function reference
132 using Fp = void(&)(Tag&, int);
133 static_assert(std::is_callable<Fp(Tag&, int)>::value);
134 static_assert(std::is_callable<Fp(DerFromTag&, int)>::value);
135 static_assert(!std::is_callable<Fp(const Tag&, int)>::value);
136 static_assert(!std::is_callable<Fp()>::value);
137 static_assert(!std::is_callable<Fp(Tag&)>::value);
138 }
139 {
140 // Function object
141 using Fn = NotCallableWithInt;
142 static_assert(std::is_callable<Fn(Tag)>::value, "");
143 static_assert(!std::is_callable<Fn(int)>::value, "");
144 }
145 }
146 {
147 // Check that the conversion to the return type is properly checked
148 using Fn = int(*)();
149 static_assert(std::is_callable<Fn(), Implicit>::value);
150 static_assert(std::is_callable<Fn(), double>::value);
151 static_assert(std::is_callable<Fn(), const volatile void>::value);
152 static_assert(!std::is_callable<Fn(), Explicit>::value);
153 }
154 {
155 // Check for is_callable_v
156 using Fn = void(*)();
157 static_assert(std::is_callable_v<Fn()>);
158 static_assert(!std::is_callable_v<Fn(int)>);
159 }
160}