컴파일러 오류 C2186
'operator': 'void' 형식의 피연산자가 잘못되었습니다.
연산자에 void
피연산자가 있습니다.
다음 샘플에서는 C2186을 생성합니다.
// C2186.cpp
// compile with: /c
void func1( void );
int func2( void );
int i = 2 + func1(); // C2186 func1() is type void
int j = 2 + func2(); // OK both operands are type int