コンパイラ エラー 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
};