xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/transparent-union-pointer.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
3 
4 typedef union   {
5   union wait *__uptr;
6   int *__iptr;
7 } __WAIT_STATUS __attribute__ ((__transparent_union__));
8 
9 extern int wait (__WAIT_STATUS __stat_loc);
10 
fastcgi_cleanup()11 void fastcgi_cleanup() {
12   int status = 0;
13   wait(&status);
14 }
15 
16