コンパイラ エラー C2292
'identifier': ベスト ケースの継承表現: 'representation1' が宣言されましたが、'representation2' が必要です
/vmb ("常にベストケース" の表現) を使用して次のコードをコンパイルすると、C2292 が発生します。
// C2292.cpp
// compile with: /vmb
class __single_inheritance X;
struct A { };
struct B { };
struct X : A, B { }; // C2292, X uses multiple inheritance