다음을 통해 공유


컴파일러 오류 C2863

'interface': 인터페이스에 친구가 있을 수 없습니다.

인터페이스에서 친구 선언은 허용되지 않습니다.

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

// C2863.cpp
// compile with: /c
#include <unknwn.h>

class CMyClass {
   void *f();
};

__interface IMyInterface {
   void g();

   friend int h();   // 2863
   friend interface IMyInterface1;  // C2863
   friend void *CMyClass::f();  // C2863
};