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
Note that the expected outcome is to find all references to this implementation method. This means that if FooTrait would also be implemented for another struct, Bar, the usage bar.area() would not be picked up because it's not routed through FooImpl.
The same applies for alternative implementations of a same trait for same struct (say, FooImplBis).
The text was updated successfully, but these errors were encountered:
Repro:
This does not return
foo.<sel>area</sel>()
.Note that the expected outcome is to find all references to this implementation method. This means that if
FooTrait
would also be implemented for another struct,Bar
, the usagebar.area()
would not be picked up because it's not routed throughFooImpl
.The same applies for alternative implementations of a same trait for same struct (say,
FooImplBis
).The text was updated successfully, but these errors were encountered: