modernc.org/cc@v1.0.1/testdata/gcc-6.3.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 }