1 2 3 4 5 6 7 8 9 10
/* PR middle-end/51761 */ struct S { unsigned int len; }; struct S foo (struct S); struct S bar (struct S x) { return ({ struct S a = x; foo (a); }); }