Compiler Error C2186

'operand' : illegal operand of type 'void'

The specified operator had a void operand.

The following is an example of this error:

void func1( void );
int  func2( void );
int i = 2 + func1();   // error, func1() is type void
int j = 2 + func2();   // OK, both operands are type int