aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/abstract3.C
blob: 95e293e501b2b01b9c8d4fe050aeed8b0080a0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/51431

struct A                  // { dg-message "note" }
{
  virtual void foo() = 0; // { dg-message "note" }
};

struct B
{
  A a;           // { dg-error "abstract" }
  B() : a() {}
};