description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2549 | Compiler Error C2549 | 11/04/2016 |
|
| 29310094-54a3-4605-bc6d-a312a68daf5d |
user-defined conversion cannot specify a return type
The following sample generates C2549:
// C2549.cpp// compile with: /cclassX { public:intoperatorint() { return value; } // C2549// try the following line instead// operator int() { return value; }private:int value; };