blob: ccdeb9bebc57417163d79993d10f4a518c62bf8e [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
void f(void*, int); // expected-note{{candidate function}}
template<typename T>
void f(T*, long); // expected-note{{candidate function template}}
void test_f(int *ip, int i) {
f(ip, i); // expected-error{{ambiguous}}
}