1 2 3 4 5 6 7 8 9 10 11 12 13
/* PR c/35437 */ /* { dg-do compile } */ struct A { int i; struct A a; /* { dg-error "has incomplete type" } */ }; void foo() { struct A b = { 0 }; }