blob: 523798824b6d3ebe8d541d60359fa6392f83b9f3 [file] [log] [blame]
/* PR c/79089 */
struct S { int b; };
struct T { struct S c; } a;
int d;
struct S e;
void
foo ()
{
e = ({ d++; a.c = (struct S) {}; });
}