Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
| 2 | |
| 3 | struct X0 { // expected-note 4{{candidate}} |
| 4 | X0(int*, float*); // expected-note 4{{candidate}} |
| 5 | }; |
| 6 | |
| 7 | template<typename T, typename U> |
| 8 | X0 f0(T t, U u) { |
| 9 | X0 x0(t, u); // expected-error{{no matching}} |
| 10 | return X0(t, u); // expected-error{{no matching}} |
| 11 | } |
| 12 | |
| 13 | void test_f0(int *ip, float *fp, double *dp) { |
| 14 | f0(ip, fp); |
| 15 | f0(ip, dp); // expected-note{{instantiation}} |
| 16 | } |
| 17 | |
| 18 | template<typename Ret, typename T, typename U> |
| 19 | Ret f1(Ret *retty, T t, U u) { |
| 20 | Ret r0(t, u); // expected-error{{no matching}} |
| 21 | return Ret(t, u); // expected-error{{no matching}} |
| 22 | } |
| 23 | |
| 24 | void test_f1(X0 *x0, int *ip, float *fp, double *dp) { |
| 25 | f1(x0, ip, fp); |
| 26 | f1(x0, ip, dp); // expected-note{{instantiation}} |
| 27 | } |
| 28 | |