aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/pr60572.C
blob: a39dfa09a65a220946865b7479eae9c338a337a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/60572
// { dg-do compile }

struct A
{
  A x;	// { dg-error "incomplete type" }
  virtual ~A () {}
};

struct B : A
{
  B () : A () {}
};