blob: fe37060185d739915d704248c26163d9a9834d3e [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002
Richard Smith29805ca2013-01-31 05:19:49 +00003template<typename T> void f(T* t) { // expected-note{{could not match 'T *' against 'int'}}
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00004 f(*t); // expected-error{{no matching function}}\
5 // expected-note 3{{requested here}}
6}
7
8void test_f(int ****p) {
9 f(p); // expected-note{{requested here}}
10}