'identifier': best case inheritance representation: 'representation1' declared but 'representation2' required
Example
Compiling the following code with /vmb ("Best-case always" representation) causes C2292.
class __single_inheritance X; struct A { }; struct B { }; struct X : A, B { }; // error, X uses multiple inheritance