blob: 127bf588e93e3159e37589aaee41fd4555ba9a90 [file] [log] [blame]
// PR c++/19963
// { dg-do compile }
struct A;
struct B
{
A a : 1; // { dg-error "incomplete" }
};
struct S
{
S : 1; // { dg-error "incomplete" }
};