შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
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
};