Compiler Error C2277

'identifier' : cannot take address of this member function

It is not possible to take the address of the member function.

The following is an example of this error:

class A
{
public:
   A();
};
(*pctor)() = &A::A;   // error