modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20001212-1.c (about)

     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  }