Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
33c530e33a2232e8d6089f4a3028e6b8c3e2b746
/
.
/
test
/
Parser
/
function-decls.c
blob: 28bb5c2e18dad6a5111c790b3b1f5340ec498bf6 [
file
] [
log
] [
blame
]
/* RUN: clang-cc %s -ast-print
*/
void
foo
()
{
int
X
;
X
=
sizeof
(
void
(*(*)())());
X
=
sizeof
(
int
(*)(
int
,
float
,
...));
X
=
sizeof
(
void
(*(
int
arga
,
void
(*
argb
)(
double
Y
)))(
void
*
Z
));
}