blob: 42e7fac42f78f154de8c911c2567340012ebc854 [file] [log] [blame]
// PR c++/58811
struct B
{
struct A a; // { dg-error "incomplete type" }
};
void foo()
{
B();
}