1 2 3 4 5 6 7 8 9 10 11 12 13 14
// PR c++/19963 // { dg-do compile } struct A; struct B { A a : 1; // { dg-error "incomplete" } }; struct S { S : 1; // { dg-error "incomplete" } };