'operator' : overloaded function as left operand
An overloaded function was on the left side of the specified operator.
Example
int func( int ); int func( double ); void main() { func = 10; // error }