]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Parser/function-decls.c
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / Parser / function-decls.c
1 /* RUN: %clang_cc1 %s -ast-print
2  */
3
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