blob: f8f3c3743fcfd9da8970b1022209d1a0fadc7ecd [file] [log] [blame]
// PR c++/42058
// { dg-options "" }
struct A;
struct B
{
A a; // { dg-error "incomplete type" }
};
B b[1] = (B[]) { 0 };