blob: 559411a19cf22d21f6e60cb19499208a140ce00d [file] [log] [blame]
/* PR c/35437 */
/* { dg-do "compile" } */
struct A
{
int i;
struct A a; /* { dg-error "has incomplete type" } */
};
void foo()
{
struct A b = { 0 };
}