blob: d6a0b247dd452a316372f40d6f7ff0776a67f26e [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 McCall342fec42010-02-01 18:53:26 +00003template<typename T> void f(T* t) { // expected-note{{failed template argument deduction}}
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}