aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/pr58811.C
blob: 42e7fac42f78f154de8c911c2567340012ebc854 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/58811

struct B
{
  struct A a; // { dg-error "incomplete type" }
};

void foo()
{
  B();
}