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