modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr85704.c (about) 1 /* PR c/85704 */ 2 3 struct C { struct {} c; }; 4 struct D { int d; struct C e; int f; }; 5 6 void 7 foo (struct D *x) 8 { 9 *x = (struct D) { .e = (struct C) { .c = {} } }; 10 }