'function' : error in function definition or declaration; function not called
The function cannot be called due to an incorrect definition or declaration.
Example
class C { public: operator int( int = 10 ); // incorrect declaration here }; void main() { int i; C c; i = c; // error }