aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/implicit9.C
blob: 3a6dbc558d9b949d05ab559d2607986133e8fd00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test that private base dtor makes derived ctor deleted
// { dg-options -std=c++0x }

struct A
{
  A();
private:
  ~A();				// { dg-error "private" }
};

struct B: A { };		// { dg-error "implicitly deleted|context" }
B * b = new B;			// { dg-error "deleted" }