Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Sema / transparent-union-pointer.c
blob31c93914b819da5085daca00d6549449e2cdee34
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
3 typedef union {
4 union wait *__uptr;
5 int *__iptr;
6 } __WAIT_STATUS __attribute__ ((__transparent_union__));
8 extern int wait (__WAIT_STATUS __stat_loc);
10 void fastcgi_cleanup() {
11 int status = 0;
12 wait(&status);