blob: c21d95a780a0c29d3203f9f8cb50688178b208c2 [file] [log] [blame]
/* PR c/64856 */
/* { dg-do compile } */
/* { dg-options "" } */
struct A {
unsigned long b;
};
struct B {
struct A c[5];
};
struct B d = { .c = { [0 ... 4] = (struct A){ .b = 2 } } };