16 lines · c
1// RUN: %clang_cc1 %s -fsyntax-only -verify2// expected-no-diagnostics3 4typedef union {5 union wait *__uptr;6 int *__iptr;7} __WAIT_STATUS __attribute__ ((__transparent_union__));8 9extern int wait (__WAIT_STATUS __stat_loc);10 11void fastcgi_cleanup(void) {12 int status = 0;13 wait(&status);14}15 16