コンパイラ エラー 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
};