blob: 7e3fa24197eb25b3c84ffe97eb82aff54db0acda [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor4fb9cde8e2009-09-15 20:11:42 +00002
3void f(void*, int); // expected-note{{candidate function}}
4template<typename T>
John McCalle1ac8d12010-01-13 00:25:19 +00005 void f(T*, long); // expected-note{{candidate function}}
Douglas Gregor4fb9cde8e2009-09-15 20:11:42 +00006
7void test_f(int *ip, int i) {
8 f(ip, i); // expected-error{{ambiguous}}
9}