/cp
[official-gcc.git] / gcc / testsuite / g++.dg / other / incomplete2.C
blob8ea583e52fd68160ae3d89e21068b717341f0603
1 // PR c++/19963
2 // { dg-do compile }
4 struct A;
6 struct B
8   A a : 1;  // { dg-error "5:field .a. has incomplete type .A" }
9 };
11 struct S
13   S : 1;    // { dg-error "incomplete" }