'identifier' : unable to resolve function overload
The specified overloaded function call was ambiguous.
The following is an example of this error:
int func( char );
int func( int );
void main ()
{
+func; // error, can't resolve which func to use
+func( 0 ); // OK
}