Sign in
llvm
/
clang
/
a5728872c7702ddd09537c95bc3cbd20e1f2fb09
/
.
/
test
/
SemaTemplate
/
recursive-template-instantiation.cpp
blob: e86196cbb5773e70cb6041256485d4c9568bf4cc [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
template
<
typename
T
>
void
f
(
T
*
t
)
{
f
(*
t
);
// expected-error{{no matching function}}\
// expected-note 3{{requested here}}
}
void
test_f
(
int
****
p
)
{
f
(
p
);
// expected-note{{requested here}}
}