Compiler Error C2586
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 C2586.
incorrect user-defined conversion syntax : illegal indirections
Indirection of a conversion operator is not allowed.
The following sample generates C2586:
// c2586.cpp
// compile with: /c
struct C {
* operator int(); // C2586
operator char(); // OK
};
Show: