modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/compound-literal-1.c (about)

     1  /* ICE incrementing compound literal: bug 28418 from Volker Reichelt
     2     <reichelt@gcc.gnu.org>.  */
     3  
     4  struct A { int i; };
     5  
     6  void foo()
     7  {
     8      ((struct A) { 0 }).i += 1;
     9  }