הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
incorrect user-defined conversion syntax : illegal indirections
Remarks
Indirection of a conversion operator is not allowed.
Example
The following example generates C2586:
// c2586.cpp
// compile with: /c
struct C {
* operator int(); // C2586
operator char(); // OK
};