aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr87110.c
blob: 12e28c470e4ed66ea2db58ef11852137d2095557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
enum a { b, c };
struct d {
  _Bool e;
  enum a f;
};
int g, h;
void
i(void) {
  struct d j[h];
  j[0] = (struct d){.f = c};
  for (; g;)
    (struct d){};
}