[ERROR]
An access declaration was made for the specified identifier, but it is not a member of a base class.
struct A {
int i;
};
struct B {
int j;
};
struct C : A {
A::i; // ok
B::j; // error
};
Put the owner class of the specified member into the base class list, or do without the access declaration.