다음을 통해 공유


컴파일러 오류 C2216

'keyword1'은 'keyword2'와 함께 사용할 수 없습니다.

함께 사용할 수 없는 두 키워드를 함께 사용했습니다.

예제

다음 샘플에서는 C2216을 생성합니다.

// C2216.cpp
// compile with: /clr /c
ref struct Y1 {
   literal
   static int staticConst2 = 10;   // C2216
};

다음 샘플에서는 C2216을 생성합니다.

// C2216b.cpp
// compile with: /clr /c
public ref class X {
   extern property int i { int get(); }   // C2216 extern not allowed on property
   typedef property int i2;   // C2216 typedef not allowed on property
};

다음 샘플에서는 C2216을 생성합니다.

// C2216c.cpp
// compile with: /clr /c
public interface struct I {
   double f();
   double g();
   double h();
};

public ref struct R : I {
   virtual double f() new override { return 0.0; }   // C2216
   virtual double g() new { return 0.0; }   // OK
   virtual double h() override { return 0.0; }   // OK
};