Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / init / array26.C
blobf8f3c3743fcfd9da8970b1022209d1a0fadc7ecd
1 // PR c++/42058
2 // { dg-options "" }
4 struct A;
6 struct B
8   A a; // { dg-error "incomplete type" }
9 };
11 B b[1] = (B[]) { 0 };