Compiler Error C2256
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2256.
illegal use of friend specifier on 'function'
A destructor or constructor cannot be specified as a friend.
The following sample generates C2256:
// C2256.cpp
// compile with: /c
class C {
public:
friend ~C(); // C2256
~C(); // OK
};
Show: