Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
e8e4a1c0bf2e3dd26dd0721a102307bbb589e96a
/
.
/
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}}
}