aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup3.C
blob: 347be4e295af31ae1efcf67241530aaabec4be3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test to make sure that the use of __typeof__ in WIFEXITED works.

int main ()
{
  int stat_loc = 0;
  (__extension__
   ({
     union
     {
       __typeof__ (stat_loc) __in;
       int 		__i;
     } __u;
     __u.__in = (stat_loc);
     __u.__i;
   })
   );
}