Sign in
llvm
/
llvm-project
/
b83a4222b1ab5f4ddab19d83995a43646af56bfe
/
.
/
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
));
}