다음을 통해 공유


컴파일러 오류 C3216

제약 조건은 'type'이 아니라 제네릭 매개 변수여야 합니다.

제약 조건 형식이 잘못되었습니다.

다음 샘플에서는 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 {};

다음 예제에서는 가능한 해결 방법을 설명합니다.

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

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