blob: 4f4015dc958dd91be517153002d2c787fa85a7a3 [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
{ // { dg-error "C" }
void foo(void);
};
struct D : private C {};
struct X: A, B1, B2, D
{
public:
void bar(void)
{
this->B::foo(); // { dg-error "" }
this->C::foo(); // { dg-error "inaccessible|context" }
}
};