(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
abi/
pr39188-1.h
       1  inline int
       2  f (int x)
       3  {
       4    static union 
       5      {
       6        int i;
       7      };
       8    int j = i;
       9    i = x;
      10    return j;
      11  }