blob: ccdeb9bebc57417163d79993d10f4a518c62bf8e (
plain)
1
2
3
4
5
6
7
8
9
|
// 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}}
}
|