blob: 9087b012b32a03159bde0f027049a3dc2cd376a4 [file] [log] [blame]
Douglas Gregorc8ab2562009-05-31 09:31:02 +00001// RUN: clang-cc -fsyntax-only -verify %s
2template<typename T>
3struct is_pointer {
4 static const bool value = false;
5};
6
7template<typename T>
8struct is_pointer<T*> {
9 static const bool value = true;
10};
11
12template<typename T>
13struct is_pointer<const T*> {
14 static const bool value = true;
15};
16
17int array0[is_pointer<int>::value? -1 : 1];
18int array1[is_pointer<int*>::value? 1 : -1];
19int array2[is_pointer<const int*>::value? 1 : -1]; // expected-error{{partial ordering}} \
20// expected-error{{negative}}
Douglas Gregor0b9247f2009-06-04 00:03:07 +000021
Douglas Gregord560d502009-06-04 00:21:18 +000022template<typename T>
23struct is_lvalue_reference {
24 static const bool value = false;
25};
26
27template<typename T>
28struct is_lvalue_reference<T&> {
29 static const bool value = true;
30};
31
32int lvalue_ref0[is_lvalue_reference<int>::value? -1 : 1];
33int lvalue_ref1[is_lvalue_reference<const int&>::value? 1 : -1];
34
Douglas Gregor9e9fae42009-07-22 20:02:25 +000035template<typename T>
36struct is_const {
37 static const bool value = false;
38};
39
40template<typename T>
41struct is_const<const T> {
42 static const bool value = true;
43};
44
45int is_const0[is_const<int>::value? -1 : 1];
46int is_const1[is_const<const int>::value? 1 : -1];
47int is_const2[is_const<const volatile int>::value? 1 : -1];
Douglas Gregor1f618a02009-07-22 20:07:21 +000048int is_const3[is_const<const int [3]>::value? 1 : -1];
49int is_const4[is_const<const volatile int[3]>::value? 1 : -1];
50int is_const4[is_const<volatile int[3]>::value? -1 : 1];
Douglas Gregor9e9fae42009-07-22 20:02:25 +000051
52template<typename T>
53struct is_volatile {
54 static const bool value = false;
55};
56
57template<typename T>
58struct is_volatile<volatile T> {
59 static const bool value = true;
60};
61
62int is_volatile0[is_volatile<int>::value? -1 : 1];
63int is_volatile1[is_volatile<volatile int>::value? 1 : -1];
64int is_volatile2[is_volatile<const volatile int>::value? 1 : -1];
65int is_volatile3[is_volatile<volatile char[3]>::value? 1 : -1];
66
Douglas Gregor0b9247f2009-06-04 00:03:07 +000067template<typename T, typename U>
68struct is_same {
69 static const bool value = false;
70};
71
72template<typename T>
73struct is_same<T, T> {
74 static const bool value = true;
75};
76
77typedef int INT;
78typedef INT* int_ptr;
79
80int is_same0[is_same<int, int>::value? 1 : -1];
81int is_same1[is_same<int, INT>::value? 1 : -1];
82int is_same2[is_same<const int, int>::value? -1 : 1];
83int is_same3[is_same<int_ptr, int>::value? -1 : 1];
Anders Carlsson4d6fb502009-06-04 04:11:30 +000084
85template<typename T>
Douglas Gregor199d9912009-06-05 00:53:49 +000086struct remove_reference {
87 typedef T type;
88};
89
90template<typename T>
91struct remove_reference<T&> {
92 typedef T type;
93};
94
95int remove_ref0[is_same<remove_reference<int>::type, int>::value? 1 : -1];
96int remove_ref1[is_same<remove_reference<int&>::type, int>::value? 1 : -1];
Douglas Gregorf290e0d2009-07-22 21:30:48 +000097
98template<typename T>
99struct remove_const {
100 typedef T type;
101};
102
103template<typename T>
104struct remove_const<const T> {
105 typedef T type;
106};
107
108int remove_const0[is_same<remove_const<const int>::type, int>::value? 1 : -1];
109int remove_const1[is_same<remove_const<const int[3]>::type, int[3]>::value? 1 : -1];
110
Douglas Gregor199d9912009-06-05 00:53:49 +0000111template<typename T>
Anders Carlsson4d6fb502009-06-04 04:11:30 +0000112struct is_incomplete_array {
113 static const bool value = false;
114};
115
116template<typename T>
117struct is_incomplete_array<T[]> {
118 static const bool value = true;
119};
120
121int incomplete_array0[is_incomplete_array<int>::value ? -1 : 1];
122int incomplete_array1[is_incomplete_array<int[1]>::value ? -1 : 1];
123int incomplete_array2[is_incomplete_array<bool[]>::value ? 1 : -1];
124int incomplete_array3[is_incomplete_array<int[]>::value ? 1 : -1];
125
126template<typename T>
127struct is_array_with_4_elements {
128 static const bool value = false;
129};
130
131template<typename T>
132struct is_array_with_4_elements<T[4]> {
133 static const bool value = true;
134};
135
136int array_with_4_elements0[is_array_with_4_elements<int[]>::value ? -1 : 1];
137int array_with_4_elements1[is_array_with_4_elements<int[1]>::value ? -1 : 1];
138int array_with_4_elements2[is_array_with_4_elements<int[4]>::value ? 1 : -1];
139int array_with_4_elements3[is_array_with_4_elements<int[4][2]>::value ? 1 : -1];
Douglas Gregor199d9912009-06-05 00:53:49 +0000140
141template<typename T>
142struct get_array_size;
143
144template<typename T, unsigned N>
145struct get_array_size<T[N]> {
146 static const unsigned value = N;
147};
148
149int array_size0[get_array_size<int[12]>::value == 12? 1 : -1];
Anders Carlssona27fad52009-06-08 15:19:08 +0000150
151template<typename T>
Douglas Gregorb084a052009-07-22 20:25:36 +0000152struct remove_extent {
153 typedef T type;
154};
155
156template<typename T>
157struct remove_extent<T[]> {
158 typedef T type;
159};
160
161template<typename T, unsigned N>
162struct remove_extent<T[N]> {
163 typedef T type;
164};
165
166int remove_extent0[is_same<remove_extent<int[][5]>::type, int[5]>::value? 1 : -1];
167int remove_extent1[is_same<remove_extent<const int[][5]>::type, const int[5]>::value? 1 : -1];
168
169template<typename T>
Anders Carlssona27fad52009-06-08 15:19:08 +0000170struct is_unary_function {
171 static const bool value = false;
172};
173
174template<typename T, typename U>
175struct is_unary_function<T (*)(U)> {
176 static const bool value = true;
177};
178
179int is_unary_function0[is_unary_function<int>::value ? -1 : 1];
180int is_unary_function1[is_unary_function<int (*)()>::value ? -1 : 1];
181int is_unary_function2[is_unary_function<int (*)(int, bool)>::value ? -1 : 1];
182int is_unary_function3[is_unary_function<int (*)(bool)>::value ? 1 : -1];
183int is_unary_function4[is_unary_function<int (*)(int)>::value ? 1 : -1];
184
185template<typename T>
186struct is_unary_function_with_same_return_type_as_argument_type {
187 static const bool value = false;
188};
189
190template<typename T>
191struct is_unary_function_with_same_return_type_as_argument_type<T (*)(T)> {
192 static const bool value = true;
193};
194
195int is_unary_function5[is_unary_function_with_same_return_type_as_argument_type<int>::value ? -1 : 1];
196int is_unary_function6[is_unary_function_with_same_return_type_as_argument_type<int (*)()>::value ? -1 : 1];
197int is_unary_function7[is_unary_function_with_same_return_type_as_argument_type<int (*)(int, bool)>::value ? -1 : 1];
198int is_unary_function8[is_unary_function_with_same_return_type_as_argument_type<int (*)(bool)>::value ? -1 : 1];
199int is_unary_function9[is_unary_function_with_same_return_type_as_argument_type<int (*)(int)>::value ? 1 : -1];
Anders Carlsson994b6cb2009-06-08 19:22:23 +0000200int is_unary_function10[is_unary_function_with_same_return_type_as_argument_type<int (*)(int, ...)>::value ? -1 : 1];
201int is_unary_function11[is_unary_function_with_same_return_type_as_argument_type<int (* const)(int)>::value ? -1 : 1];
Douglas Gregor1fe067a2009-06-08 16:04:08 +0000202
203template<typename T>
204struct is_binary_function {
205 static const bool value = false;
206};
207
208template<typename R, typename T1, typename T2>
209struct is_binary_function<R(T1, T2)> {
210 static const bool value = true;
211};
212
213int is_binary_function0[is_binary_function<int(float, double)>::value? 1 : -1];
Douglas Gregor949bf692009-06-09 22:17:39 +0000214
215template<typename T>
216struct is_member_pointer {
217 static const bool value = false;
218};
219
220template<typename T, typename Class>
221struct is_member_pointer<T Class::*> {
222 static const bool value = true;
223};
Douglas Gregor637a4092009-06-10 23:47:09 +0000224
225struct X { };
226
227int is_member_pointer0[is_member_pointer<int X::*>::value? 1 : -1];
228int is_member_pointer1[is_member_pointer<const int X::*>::value? 1 : -1];
229int is_member_pointer2[is_member_pointer<int (X::*)()>::value? 1 : -1];
230int is_member_pointer3[is_member_pointer<int (X::*)(int) const>::value? 1 : -1];
231int is_member_pointer4[is_member_pointer<int (X::**)(int) const>::value? -1 : 1];
232int is_member_pointer5[is_member_pointer<int>::value? -1 : 1];
233
234template<typename T>
235struct is_member_function_pointer {
236 static const bool value = false;
237};
238
239template<typename T, typename Class>
240struct is_member_function_pointer<T (Class::*)()> {
241 static const bool value = true;
242};
243
244template<typename T, typename Class>
245struct is_member_function_pointer<T (Class::*)() const> {
246 static const bool value = true;
247};
248
249template<typename T, typename Class>
250struct is_member_function_pointer<T (Class::*)() volatile> {
251 static const bool value = true;
252};
253
254template<typename T, typename Class>
255struct is_member_function_pointer<T (Class::*)() const volatile> {
256 static const bool value = true;
257};
258
259template<typename T, typename Class, typename A1>
260struct is_member_function_pointer<T (Class::*)(A1)> {
261 static const bool value = true;
262};
263
264template<typename T, typename Class, typename A1>
265struct is_member_function_pointer<T (Class::*)(A1) const> {
266 static const bool value = true;
267};
268
269template<typename T, typename Class, typename A1>
270struct is_member_function_pointer<T (Class::*)(A1) volatile> {
271 static const bool value = true;
272};
273
274template<typename T, typename Class, typename A1>
275struct is_member_function_pointer<T (Class::*)(A1) const volatile> {
276 static const bool value = true;
277};
278
279int is_member_function_pointer0[
280 is_member_function_pointer<int X::*>::value? -1 : 1];
281int is_member_function_pointer1[
282 is_member_function_pointer<int (X::*)()>::value? 1 : -1];
283int is_member_function_pointer2[
284 is_member_function_pointer<X (X::*)(X&)>::value? 1 : -1];
285int is_member_function_pointer3[
286 is_member_function_pointer<int (X::*)() const>::value? 1 : -1];
287int is_member_function_pointer4[
288 is_member_function_pointer<int (X::*)(float) const>::value? 1 : -1];
289
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000290// Test substitution of non-dependent arguments back into the template
291// argument list of the class template partial specialization.
Douglas Gregor637a4092009-06-10 23:47:09 +0000292template<typename T, typename ValueType = T>
293struct is_nested_value_type_identity {
294 static const bool value = false;
295};
296
297template<typename T>
298struct is_nested_value_type_identity<T, typename T::value_type> {
299 static const bool value = true;
300};
301
302template<typename T>
303struct HasValueType {
304 typedef T value_type;
305};
306
307struct HasIdentityValueType {
308 typedef HasIdentityValueType value_type;
309};
310
311struct NoValueType { };
312
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000313int is_nested_value_type_identity0[
314 is_nested_value_type_identity<HasValueType<int> >::value? -1 : 1];
Douglas Gregor637a4092009-06-10 23:47:09 +0000315int is_nested_value_type_identity1[
316 is_nested_value_type_identity<HasIdentityValueType>::value? 1 : -1];
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000317int is_nested_value_type_identity2[
318 is_nested_value_type_identity<NoValueType>::value? -1 : 1];
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000319
Douglas Gregor16df8502009-06-12 22:21:45 +0000320
321// C++ [temp.class.spec]p4:
322template<class T1, class T2, int I> class A { }; //#1
323template<class T, int I> class A<T, T*, I> { }; //#2
324template<class T1, class T2, int I> class A<T1*, T2, I> { }; //#3
325template<class T> class A<int, T*, 5> { }; //#4
326template<class T1, class T2, int I> class A<T1, T2*, I> { }; //#5