aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/access15.C
blob: d7a30f9ff71ce624f1578176e8784741c4844254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do assemble  }
// Bug: g++ complains about Z being a private base when trying to
// initialize B::foo.

struct Z {
  Z();
  Z(int);
};

struct A : private Z { };
struct B : public A
{
    ::Z foo;
    B();
    B(const B&);
};

B::B() : foo(1) { }		// { dg-bogus "" }