Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
Parser
/
function-decls.c
blob: db9a98b391e602825a6411cc8a5113bbb7068103 [
file
] [
log
] [
blame
]
/* RUN: %clang_cc1 %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
));
}