blob: 4380998521f3149959cbe1ed4b042fb6d1450065 [file] [log] [blame]
// 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