Partager via


Erreur du compilateur C3216

la contrainte doit être un paramètre générique et non 'type'

Une contrainte est incorrecte.

L’exemple suivant génère l’erreur C3216 :

// C3216.cpp
// compile with: /clr
interface struct A {};

generic <class T>
where F : A   // C3216
// Try the following line instead:
// where T : A    // C3216
ref class C {};

L’exemple suivant illustre une résolution possible :

// C3216b.cpp
// compile with: /clr /c
interface struct A {};

generic <class T>
where T : A
ref class C {};