הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
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
};