blob: 68911c84ce109405b58e8ca63b0e5e943177efbb [file] [log] [blame]
/* 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); });
}