ade1354a84
In positions outside of calls (e.g. property initializers) we resolve callable references using a synthetic outer call with the expected type as parameter type. If this fails, we previously returned an unresolved reference. After this commit, we additionally try to resolve the callable reference with expected type Any. This lets us report more precise diagnostics like type mismatches or when multiple overloads exist NONE_APPLICABLE. #KT-55373 Fixed #KT-55955 Fixed