컴파일러 오류 C3141
'interface_name': 인터페이스는 공용 상속만 지원합니다.
인터페이스(또는 __interface) 키워드로 정의된 인터페이스는 공용 상속만 지원합니다.
다음 샘플에서는 C3141을 생성합니다.
// C3141.cpp
__interface IBase {};
__interface IDerived1 : protected IBase {}; // C3141
__interface IDerived2 : private IBase {}; // C3141