(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20001212-1.c
       1  typedef struct
       2  {
       3    long double l;
       4  } ld;
       5  
       6  ld a (ld x, ld y)
       7  {
       8    ld b;
       9    b.l = x.l + y.l;
      10  }