컴파일러 오류 C2549
사용자 정의 변환에서 반환 형식을 지정할 수 없습니다.
다음 샘플에서는 C2549를 생성합니다.
// C2549.cpp
// compile with: /c
class X {
public:
int operator int() { return value; } // C2549
// try the following line instead
// operator int() { return value; }
private:
int value;
};