merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr37026.c
blob694e2ca2a5f75ff317e57d21d312ed24dfe9aaf0
1 struct a {
2 long a1;
3 long a2;
4 };
5 struct b {
6 struct a b1;
7 struct a b2;
8 };
9 void bar (struct b *c)
11 c->b1 = c->b2 = ((struct a) { foo(), 0 });