rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20001212-1.c

11 lines
90 B
C

typedef struct
{
long double l;
} ld;
ld a (ld x, ld y)
{
ld b;
b.l = x.l + y.l;
}