blob: 17f412f6716d60260b4f39b1e4bfe9d354b37a8d [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor1fdd89b2009-09-15 20:11:42 +00002
3void f(void*, int); // expected-note{{candidate function}}
4template<typename T>
5 void f(T*, long); // expected-note{{candidate function template}}
6
7void test_f(int *ip, int i) {
8 f(ip, i); // expected-error{{ambiguous}}
9}