1 /* { dg-do compile } */
2 /* { dg-options "" } */
3 struct str {};
4 struct {
5   struct str b;
6   float c[1];
7   int d[1];
8   float e[2];
9   int f[1];
10 } a = {{}, 0, {0.5}, 0, 0, {0}};
11