| // RUN: %clang_cc1 -fsyntax-only -verify %s |
| int (*pfd)(double) = f; // selects f(double) |
| int (*pfd2)(double) = &f; // selects f(double) |
| int (*pfd3)(double) = ((&((f)))); // selects f(double) |
| int (*pfi)(int) = &f; // selects f(int) |
| // FIXME: This error message is not very good. We need to keep better |
| // track of what went wrong when the implicit conversion failed to |
| // give a better error message here. |
| int (*pfe)(...) = &f; // expected-error{{incompatible type initializing '<overloaded function type>', expected 'int (*)(...)'}} |
| int (&rfi)(int) = f; // selects f(int) |
| int (&rfd)(double) = f; // selects f(double) |
| void g(int (*fp)(int)); // expected-note{{note: candidate function}} |
| void g(int (*fp)(float)); |
| void g(int (*fp)(double)); // expected-note{{note: candidate function}} |
| template<typename T> T g3(T); |
| g(g2); // expected-error{{call to 'g' is ambiguous; candidates are:}} |
| template<typename T> T h1(T); |
| template<typename R, typename A1> R h1(A1); |
| void hb(int (*fp)(double)); |