blob: 0ddedaf2354abb4f6a4e470c15271ca1f4e3cf58 [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
John McCall578b69b2009-12-16 08:11:27 +00003template<typename T> void f(T* t) { // expected-note{{candidate function}}
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}