OSDN Git Service

PR middle-end/34688
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / compound-literal-1.c
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 }