'constraint_2': 'constraint_1' に値の制約があるために、'constraint_1' は制約として使用できません
値クラスがシールされています。 制約が値クラスの場合は、別の制約はそこから派生できません。
詳細については、「Constraints on Generic Type Parameters (C++/CLI) (ジェネリック型パラメーターの (C++/CLI))」を参照してください。
例
次の例では C3297 が生成されます。
// C3297.cpp
// compile with: /clr /c
generic<class T, class U>
where T : value class
where U : T // C3297
public ref struct R {};