* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / compound-literal-1.c
blob968bb450a7134ae7555acfd6441b9f3a3269bf82
1 /* ICE incrementing compound literal: bug 28418 from Volker Reichelt
2 <reichelt@gcc.gnu.org>. */
4 struct A { int i; };
6 void foo()
8 ((struct A) { 0 }).i += 1;