summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/access15.C
blob: 4380998521f3149959cbe1ed4b042fb6d1450065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Bug: g++ complains about Z being a private base when trying to
// initialize B::foo.
// Build don't link:

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

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

B::B() : foo(1) { }		// gets bogus error