Aracılığıyla paylaş


Derleyici Uyarısı (düzey 1) C4688

'constraint': kısıtlama listesi derleme özel türü 'type' içeriyor

Kısıtlama listesi bir derleme özel türüne sahiptir, yani türe derleme dışından erişildiğinde kullanılamaz. Daha fazla bilgi için bkz . Genel Bilgiler.

Örnek

Aşağıdaki örnek C4688 oluşturur.

// C4688.cpp
// compile with: /clr /c /W1
ref struct A {};   // private type
public ref struct B {};

// Delete the following 3 lines to resolve.
generic <class T>
where T : A   // C4688
public ref struct M {};

generic <class T>
where T : B
public ref struct N {};