Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 933 Bytes

compiler-warning-level-1-c4677.md

File metadata and controls

30 lines (24 loc) · 933 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4677
Compiler Warning (level 1) C4677
11/04/2016
C4677
C4677
a8d656a1-e2ff-4f8b-9028-201765131026

Compiler Warning (level 1) C4677

'function': signature of non-private member contains assembly private type 'private_type'

A type that has public accessibility outside the assembly uses a type that has private access outside the assembly. A component that references the public assembly type will not be able to use the type member or members that reference the assembly private type.

Example

The following sample generates C4677.

// C4677.cpp
// compile with: /clr /c /W1
delegate void TestDel();
public delegate void TestDel2();

public ref class MyClass {
public:
   static event TestDel^ MyClass_Event;   // C4677
   static event TestDel2^ MyClass_Event2;   // OK
};