xref: /llvm-project/clang/test/Parser/function-decls.c (revision 8fbe78f6fc7b41d1a4228c126fcb522131150518)
1 /* RUN: %clang_cc1 %s -ast-print
2  */
3 
foo()4 void foo() {
5   int X;
6   X = sizeof(void (*(*)())());
7   X = sizeof(int(*)(int, float, ...));
8   X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z));
9 }
10 
11