1 inline int
f(int x)2 f (int x)
3 {
4   static union
5     {
6       int i;
7     };
8   int j = i;
9   i = x;
10   return j;
11 }
12