rt_gccstream/gcc/testsuite/g++.dg/other/incomplete2.C

15 lines
160 B
C

// PR c++/19963
// { dg-do compile }
struct A;
struct B
{
A a : 1; // { dg-error "incomplete" }
};
struct S
{
S : 1; // { dg-error "incomplete" }
};