blob: 7e3fa24197eb25b3c84ffe97eb82aff54db0acda [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void f(void*, int); // expected-note{{candidate function}}
4template<typename T>
5 void f(T*, long); // expected-note{{candidate function}}
6
7void test_f(int *ip, int i) {
8 f(ip, i); // expected-error{{ambiguous}}
9}