컴파일러 오류 C2250
'identifier': 'class::member'의 모호한 상속
파생 클래스는 가상 기본 클래스의 가상 함수에 대해 둘 이상의 재정의를 상속합니다. 이러한 재정의는 파생 클래스에서 모호합니다.
다음 샘플에서는 C2286을 생성합니다.
// C2250.cpp
// compile with: /c
// C2250 expected
struct V {
virtual void vf();
};
struct A : virtual V {
void vf();
};
struct B : virtual V {
void vf();
};
struct D : A, B {
// Uncomment the following line to resolve.
// void vf();
};