blob: 17b6496916cf8cc716297b7a0bf3d7d3de1faf70 [file] [log] [blame]
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR52: Non-static members, member selection and access checking
struct A
{
void foo(void);
};
struct B
{
private:
void foo(void);
};
struct B1 : B {};
struct B2 : B {};
struct C
{
void foo(void);
};
struct D : private C {}; // { dg-message "declared" }
struct X: A, B1, B2, D
{
public:
void bar(void)
{
this->B::foo(); // { dg-error "" }
this->C::foo(); // { dg-error "inaccessible|context" }
}
};