blob: b1053fe3cb7f3795366a59bd20b55047625c216c [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];
97
98template<typename T>
Anders Carlsson4d6fb502009-06-04 04:11:30 +000099struct is_incomplete_array {
100 static const bool value = false;
101};
102
103template<typename T>
104struct is_incomplete_array<T[]> {
105 static const bool value = true;
106};
107
108int incomplete_array0[is_incomplete_array<int>::value ? -1 : 1];
109int incomplete_array1[is_incomplete_array<int[1]>::value ? -1 : 1];
110int incomplete_array2[is_incomplete_array<bool[]>::value ? 1 : -1];
111int incomplete_array3[is_incomplete_array<int[]>::value ? 1 : -1];
112
113template<typename T>
114struct is_array_with_4_elements {
115 static const bool value = false;
116};
117
118template<typename T>
119struct is_array_with_4_elements<T[4]> {
120 static const bool value = true;
121};
122
123int array_with_4_elements0[is_array_with_4_elements<int[]>::value ? -1 : 1];
124int array_with_4_elements1[is_array_with_4_elements<int[1]>::value ? -1 : 1];
125int array_with_4_elements2[is_array_with_4_elements<int[4]>::value ? 1 : -1];
126int array_with_4_elements3[is_array_with_4_elements<int[4][2]>::value ? 1 : -1];
Douglas Gregor199d9912009-06-05 00:53:49 +0000127
128template<typename T>
129struct get_array_size;
130
131template<typename T, unsigned N>
132struct get_array_size<T[N]> {
133 static const unsigned value = N;
134};
135
136int array_size0[get_array_size<int[12]>::value == 12? 1 : -1];
Anders Carlssona27fad52009-06-08 15:19:08 +0000137
138template<typename T>
Douglas Gregorb084a052009-07-22 20:25:36 +0000139struct remove_extent {
140 typedef T type;
141};
142
143template<typename T>
144struct remove_extent<T[]> {
145 typedef T type;
146};
147
148template<typename T, unsigned N>
149struct remove_extent<T[N]> {
150 typedef T type;
151};
152
153int remove_extent0[is_same<remove_extent<int[][5]>::type, int[5]>::value? 1 : -1];
154int remove_extent1[is_same<remove_extent<const int[][5]>::type, const int[5]>::value? 1 : -1];
155
156template<typename T>
Anders Carlssona27fad52009-06-08 15:19:08 +0000157struct is_unary_function {
158 static const bool value = false;
159};
160
161template<typename T, typename U>
162struct is_unary_function<T (*)(U)> {
163 static const bool value = true;
164};
165
166int is_unary_function0[is_unary_function<int>::value ? -1 : 1];
167int is_unary_function1[is_unary_function<int (*)()>::value ? -1 : 1];
168int is_unary_function2[is_unary_function<int (*)(int, bool)>::value ? -1 : 1];
169int is_unary_function3[is_unary_function<int (*)(bool)>::value ? 1 : -1];
170int is_unary_function4[is_unary_function<int (*)(int)>::value ? 1 : -1];
171
172template<typename T>
173struct is_unary_function_with_same_return_type_as_argument_type {
174 static const bool value = false;
175};
176
177template<typename T>
178struct is_unary_function_with_same_return_type_as_argument_type<T (*)(T)> {
179 static const bool value = true;
180};
181
182int is_unary_function5[is_unary_function_with_same_return_type_as_argument_type<int>::value ? -1 : 1];
183int is_unary_function6[is_unary_function_with_same_return_type_as_argument_type<int (*)()>::value ? -1 : 1];
184int is_unary_function7[is_unary_function_with_same_return_type_as_argument_type<int (*)(int, bool)>::value ? -1 : 1];
185int is_unary_function8[is_unary_function_with_same_return_type_as_argument_type<int (*)(bool)>::value ? -1 : 1];
186int 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 +0000187int is_unary_function10[is_unary_function_with_same_return_type_as_argument_type<int (*)(int, ...)>::value ? -1 : 1];
188int 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 +0000189
190template<typename T>
191struct is_binary_function {
192 static const bool value = false;
193};
194
195template<typename R, typename T1, typename T2>
196struct is_binary_function<R(T1, T2)> {
197 static const bool value = true;
198};
199
200int is_binary_function0[is_binary_function<int(float, double)>::value? 1 : -1];
Douglas Gregor949bf692009-06-09 22:17:39 +0000201
202template<typename T>
203struct is_member_pointer {
204 static const bool value = false;
205};
206
207template<typename T, typename Class>
208struct is_member_pointer<T Class::*> {
209 static const bool value = true;
210};
Douglas Gregor637a4092009-06-10 23:47:09 +0000211
212struct X { };
213
214int is_member_pointer0[is_member_pointer<int X::*>::value? 1 : -1];
215int is_member_pointer1[is_member_pointer<const int X::*>::value? 1 : -1];
216int is_member_pointer2[is_member_pointer<int (X::*)()>::value? 1 : -1];
217int is_member_pointer3[is_member_pointer<int (X::*)(int) const>::value? 1 : -1];
218int is_member_pointer4[is_member_pointer<int (X::**)(int) const>::value? -1 : 1];
219int is_member_pointer5[is_member_pointer<int>::value? -1 : 1];
220
221template<typename T>
222struct is_member_function_pointer {
223 static const bool value = false;
224};
225
226template<typename T, typename Class>
227struct is_member_function_pointer<T (Class::*)()> {
228 static const bool value = true;
229};
230
231template<typename T, typename Class>
232struct is_member_function_pointer<T (Class::*)() const> {
233 static const bool value = true;
234};
235
236template<typename T, typename Class>
237struct is_member_function_pointer<T (Class::*)() volatile> {
238 static const bool value = true;
239};
240
241template<typename T, typename Class>
242struct is_member_function_pointer<T (Class::*)() const volatile> {
243 static const bool value = true;
244};
245
246template<typename T, typename Class, typename A1>
247struct is_member_function_pointer<T (Class::*)(A1)> {
248 static const bool value = true;
249};
250
251template<typename T, typename Class, typename A1>
252struct is_member_function_pointer<T (Class::*)(A1) const> {
253 static const bool value = true;
254};
255
256template<typename T, typename Class, typename A1>
257struct is_member_function_pointer<T (Class::*)(A1) volatile> {
258 static const bool value = true;
259};
260
261template<typename T, typename Class, typename A1>
262struct is_member_function_pointer<T (Class::*)(A1) const volatile> {
263 static const bool value = true;
264};
265
266int is_member_function_pointer0[
267 is_member_function_pointer<int X::*>::value? -1 : 1];
268int is_member_function_pointer1[
269 is_member_function_pointer<int (X::*)()>::value? 1 : -1];
270int is_member_function_pointer2[
271 is_member_function_pointer<X (X::*)(X&)>::value? 1 : -1];
272int is_member_function_pointer3[
273 is_member_function_pointer<int (X::*)() const>::value? 1 : -1];
274int is_member_function_pointer4[
275 is_member_function_pointer<int (X::*)(float) const>::value? 1 : -1];
276
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000277// Test substitution of non-dependent arguments back into the template
278// argument list of the class template partial specialization.
Douglas Gregor637a4092009-06-10 23:47:09 +0000279template<typename T, typename ValueType = T>
280struct is_nested_value_type_identity {
281 static const bool value = false;
282};
283
284template<typename T>
285struct is_nested_value_type_identity<T, typename T::value_type> {
286 static const bool value = true;
287};
288
289template<typename T>
290struct HasValueType {
291 typedef T value_type;
292};
293
294struct HasIdentityValueType {
295 typedef HasIdentityValueType value_type;
296};
297
298struct NoValueType { };
299
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000300int is_nested_value_type_identity0[
301 is_nested_value_type_identity<HasValueType<int> >::value? -1 : 1];
Douglas Gregor637a4092009-06-10 23:47:09 +0000302int is_nested_value_type_identity1[
303 is_nested_value_type_identity<HasIdentityValueType>::value? 1 : -1];
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000304int is_nested_value_type_identity2[
305 is_nested_value_type_identity<NoValueType>::value? -1 : 1];
Douglas Gregor02cbbd22009-06-11 18:10:32 +0000306
Douglas Gregor16df8502009-06-12 22:21:45 +0000307
308// C++ [temp.class.spec]p4:
309template<class T1, class T2, int I> class A { }; //#1
310template<class T, int I> class A<T, T*, I> { }; //#2
311template<class T1, class T2, int I> class A<T1*, T2, I> { }; //#3
312template<class T> class A<int, T*, 5> { }; //#4
313template<class T1, class T2, int I> class A<T1, T2*, I> { }; //#5