blob: eed8223862dd0e0fc926fd836983eda0ebaf8621 [file] [log] [blame]
Douglas Gregorc9467cf2008-12-12 02:00:36 +00001// RUN: clang -fsyntax-only -pedantic -verify %s
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00002int* f(int) { return 0; }
3float* f(float) { return 0; }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00004void f();
5
6void test_f(int iv, float fv) {
7 float* fp = f(fv);
8 int* ip = f(iv);
9}
10
11int* g(int, float, int); // expected-note {{ candidate function }}
12float* g(int, int, int); // expected-note {{ candidate function }}
13double* g(int, float, float); // expected-note {{ candidate function }}
14char* g(int, float, ...); // expected-note {{ candidate function }}
15void g();
16
17void test_g(int iv, float fv) {
18 int* ip1 = g(iv, fv, 0);
19 float* fp1 = g(iv, iv, 0);
20 double* dp1 = g(iv, fv, fv);
21 char* cp1 = g(0, 0);
22 char* cp2 = g(0, 0, 0, iv, fv);
23
24 double* dp2 = g(0, fv, 1.5); // expected-error {{ call to 'g' is ambiguous; candidates are: }}
25}
26
27double* h(double f);
28int* h(int);
29
30void test_h(float fv, unsigned char cv) {
31 double* dp = h(fv);
32 int* ip = h(cv);
33}
34
35int* i(int);
36double* i(long);
37
38void test_i(short sv, int iv, long lv, unsigned char ucv) {
39 int* ip1 = i(sv);
40 int* ip2 = i(iv);
41 int* ip3 = i(ucv);
42 double* dp1 = i(lv);
43}
44
45int* j(void*);
46double* j(bool);
47
48void test_j(int* ip) {
49 int* ip1 = j(ip);
50}
51
52int* k(char*);
53double* k(bool);
54
55void test_k() {
56 int* ip1 = k("foo");
57 double* dp1 = k(L"foo");
58}
59
60int* l(wchar_t*);
61double* l(bool);
62
63void test_l() {
64 int* ip1 = l(L"foo");
65 double* dp1 = l("foo");
66}
67
68int* m(const char*);
69double* m(char*);
70
71void test_m() {
72 int* ip = m("foo");
73}
74
75int* n(char*);
76double* n(void*);
Douglas Gregor0f669f52008-11-26 23:33:36 +000077class E;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000078
Douglas Gregor0f669f52008-11-26 23:33:36 +000079void test_n(E* e) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000080 char ca[7];
81 int* ip1 = n(ca);
82 int* ip2 = n("foo");
83
84 float fa[7];
85 double* dp1 = n(fa);
Douglas Gregor0f669f52008-11-26 23:33:36 +000086
87 double* dp2 = n(e);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000088}
89
90enum PromotesToInt {
Douglas Gregorc9467cf2008-12-12 02:00:36 +000091 PromotesToIntValue = -1
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000092};
93
94enum PromotesToUnsignedInt {
Douglas Gregorc9467cf2008-12-12 02:00:36 +000095 PromotesToUnsignedIntValue = 1u
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000096};
97
98int* o(int);
99double* o(unsigned int);
100float* o(long);
101
102void test_o() {
103 int* ip1 = o(PromotesToIntValue);
104 double* dp1 = o(PromotesToUnsignedIntValue);
105}
106
107int* p(int);
108double* p(double);
109
110void test_p() {
111 int* ip = p((short)1);
112 double* dp = p(1.0f);
113}
114
115struct Bits {
116 signed short int_bitfield : 5;
117 unsigned int uint_bitfield : 8;
118};
119
120int* bitfields(int, int);
121float* bitfields(unsigned int, int);
122
123void test_bitfield(Bits bits, int x) {
124 int* ip = bitfields(bits.int_bitfield, 0);
125 float* fp = bitfields(bits.uint_bitfield, 0u);
126}
127
128int* multiparm(long, int, long); // expected-note {{ candidate function }}
129float* multiparm(int, int, int); // expected-note {{ candidate function }}
130double* multiparm(int, int, short); // expected-note {{ candidate function }}
131
132void test_multiparm(long lv, short sv, int iv) {
133 int* ip1 = multiparm(lv, iv, lv);
134 int* ip2 = multiparm(lv, sv, lv);
135 float* fp1 = multiparm(iv, iv, iv);
136 float* fp2 = multiparm(sv, iv, iv);
137 double* dp1 = multiparm(sv, sv, sv);
138 double* dp2 = multiparm(iv, sv, sv);
139 multiparm(sv, sv, lv); // expected-error {{ call to 'multiparm' is ambiguous; candidates are: }}
140}
Douglas Gregor9b6e2d22008-10-22 00:38:21 +0000141
142// Test overloading based on qualification vs. no qualification
143// conversion.
144int* quals1(int const * p);
145char* quals1(int * p);
146
147int* quals2(int const * const * pp);
148char* quals2(int * * pp);
149
150int* quals3(int const * * const * ppp);
151char* quals3(int *** ppp);
152
153void test_quals(int * p, int * * pp, int * * * ppp) {
154 char* q1 = quals1(p);
155 char* q2 = quals2(pp);
156 char* q3 = quals3(ppp);
157}
158
159// Test overloading based on qualification ranking (C++ 13.3.2)p3.
160int* quals_rank1(int const * p);
161float* quals_rank1(int const volatile *p);
Douglas Gregor57373262008-10-22 14:17:15 +0000162char* quals_rank1(char*);
163double* quals_rank1(const char*);
Douglas Gregor9b6e2d22008-10-22 00:38:21 +0000164
165int* quals_rank2(int const * const * pp);
166float* quals_rank2(int * const * pp);
167
Douglas Gregor57373262008-10-22 14:17:15 +0000168void quals_rank3(int const * const * const volatile * p); // expected-note{{candidate function}}
169void quals_rank3(int const * const volatile * const * p); // expected-note{{candidate function}}
170
171void quals_rank3(int const *); // expected-note{{candidate function}}
172void quals_rank3(int volatile *); // expected-note{{candidate function}}
173
Douglas Gregor9b6e2d22008-10-22 00:38:21 +0000174void test_quals_ranking(int * p, int volatile *pq, int * * pp, int * * * ppp) {
Douglas Gregor57373262008-10-22 14:17:15 +0000175 int* q1 = quals_rank1(p);
Douglas Gregor9b6e2d22008-10-22 00:38:21 +0000176 float* q2 = quals_rank1(pq);
Douglas Gregor57373262008-10-22 14:17:15 +0000177 double* q3 = quals_rank1("string literal");
178 char a[17];
179 const char* ap = a;
180 char* q4 = quals_rank1(a);
181 double* q5 = quals_rank1(ap);
182
183 float* q6 = quals_rank2(pp);
184
185 quals_rank3(ppp); // expected-error {{call to 'quals_rank3' is ambiguous; candidates are:}}
186
187 quals_rank3(p); // expected-error {{call to 'quals_rank3' is ambiguous; candidates are:}}
188 quals_rank3(pq);
Douglas Gregor9b6e2d22008-10-22 00:38:21 +0000189}
Douglas Gregor57373262008-10-22 14:17:15 +0000190
Douglas Gregorbc0805a2008-10-23 00:40:37 +0000191// Test overloading based on derived-to-base conversions
192class A { };
193class B : public A { };
194class C : public B { };
195class D : public C { };
196
197int* derived1(A*);
198char* derived1(const A*);
199float* derived1(void*);
200
201int* derived2(A*);
202float* derived2(B*);
203
204int* derived3(A*);
205float* derived3(const B*);
206char* derived3(C*);
207
208void test_derived(B* b, B const* bc, C* c, const C* cc, void* v, D* d) {
209 int* d1 = derived1(b);
210 char* d2 = derived1(bc);
211 int* d3 = derived1(c);
212 char* d4 = derived1(cc);
213 float* d5 = derived1(v);
214
215 float* d6 = derived2(b);
216 float* d7 = derived2(c);
217
218 char* d8 = derived3(d);
219}
Douglas Gregor27c8dc02008-10-29 00:13:59 +0000220
221// Test overloading of references.
222// (FIXME: tests binding to determine candidate sets, not overload
223// resolution per se).
224int* intref(int&);
225float* intref(const int&);
226
227void intref_test() {
228 float* ir1 = intref(5);
229 float* ir2 = intref(5.5);
230}
Douglas Gregor15da57e2008-10-29 02:00:59 +0000231
232// Test reference binding vs. standard conversions.
233int& bind_vs_conv(const double&);
234float& bind_vs_conv(int);
235
236void bind_vs_conv_test()
237{
238 int& i1 = bind_vs_conv(1.0f);
239 float& f1 = bind_vs_conv((short)1);
240}
241
242// Test that cv-qualifiers get subsumed in the reference binding.
243struct X { };
244struct Y { };
245struct Z : X, Y { };
246
247int& cvqual_subsume(X&); // expected-note{{candidate function}}
248float& cvqual_subsume(const Y&); // expected-note{{candidate function}}
249
250int& cvqual_subsume2(const X&);
251float& cvqual_subsume2(const volatile Y&);
252
253Z get_Z();
254
255void cvqual_subsume_test(Z z) {
256 cvqual_subsume(z); // expected-error{{call to 'cvqual_subsume' is ambiguous; candidates are:}}
257 int& x = cvqual_subsume2(get_Z()); // okay: only binds to the first one
258}
Douglas Gregorf70bdb92008-10-29 14:50:44 +0000259
260// Test overloading with cv-qualification differences in reference
261// binding.
262int& cvqual_diff(X&);
263float& cvqual_diff(const X&);
264
265void cvqual_diff_test(X x, Z z) {
266 int& i1 = cvqual_diff(x);
267 int& i2 = cvqual_diff(z);
268}
269
270// Test overloading with derived-to-base differences in reference
271// binding.
272struct Z2 : Z { };
273
274int& db_rebind(X&);
275long& db_rebind(Y&);
276float& db_rebind(Z&);
277
278void db_rebind_test(Z2 z2) {
279 float& f1 = db_rebind(z2);
280}