You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to determine if other is a specialization of victim to fix false positive errors of incompatible types.
In commit c8aa7c7, we compare the return type of each Impl members to determine if they are compatible, but it does not cover other cases of incompatibility.
The text was updated successfully, but these errors were encountered:
Maybe we can leverage rust-analyzer to do it for us somehow? I don't think doing stuff like this on your own is reasonable because the bigger the code the harder it will get to maintain.
But I do not have enough knowledge about rust-analyzer / lsps to answer it, so its just a thought.
We need to determine if
other
is a specialization ofvictim
to fix false positive errors of incompatible types.In commit c8aa7c7, we compare the return type of each Impl members to determine if they are compatible, but it does not cover other cases of incompatibility.
The text was updated successfully, but these errors were encountered: