'class::Identifier' is not a member of a base class of 'class'
Identifier cannot be accessed because it is not a member inherited from any base class.
Example
struct X { int x; }; struct A { int a; }; struct B : public A { X::x; // error, B is not derived from X A::a; // OK };