Fix the clang-wpa example.
[clang.git] / test / Parser / function-decls.c
blobdb9a98b391e602825a6411cc8a5113bbb7068103
1 /* RUN: %clang_cc1 %s -ast-print
2 */
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));