'type': ジェネリック型パラメーターは既に制約されています
注釈
複数の where 句でジェネリック パラメーターを制約することは無効です。
Example
次の例では 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