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