컴파일러 오류 C2602
'class::Identifier'는 'class'의 기본 클래스의 멤버가 아닙니다.
Identifier
는 기본 클래스에서 상속된 멤버가 아니므로 액세스할 수 없습니다.
다음 샘플에서는 C2602를 생성합니다.
// C2602.cpp
// compile with: /c
struct X {
int x;
};
struct A {
int a;
};
struct B : public A {
X::x; // C2602 B is not derived from X
A::a; // OK
};