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
Replace singleton bounds before doing implicit search
Before searching for implicit arguments, if a the constraint
contains a type parameter
```
P >: A <: B
```
where `P` occurs in the searched-for type and `A =:= B`, change the constraint
to
```
P := B
```
instead. This improves the implicit search by making the searched-for type
have fewer uninstantiated type variables.
0 commit comments