blob: 6d01f3e88aa6aac47fa902b7864ade59ace1d74f [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 };
}