modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr79089.c (about) 1 /* PR c/79089 */ 2 3 struct S { int b; }; 4 struct T { struct S c; } a; 5 int d; 6 struct S e; 7 8 void 9 foo () 10 { 11 e = ({ d++; a.c = (struct S) {}; }); 12 }