text the 'identifier' in base 'base'
This warning provides additional information about an ambiguous class hierarchy reported in error C2385. A member of a derived class is declared in more than one base class. The following sample generates C4385:
struct A { int x; }; struct B { int x; }; struct C : A, B { }; struct D : C { C::x; // C4385, delete one of the declarations for x to resolve }; void main() { }