'type': ジェネリック型パラメーターは既に制約されています
複数の where
句でジェネリック パラメーターを制約することは無効です。
次の例では C3233 が生成されます。
// C3233.cpp
// compile with: /clr /LD
interface struct C {};
interface struct D {};
generic <class T>
where T : C
where T : D
ref class E {}; // C3233