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